Skip to content

Commit 7fddb2b

Browse files
authored
Merge pull request #170 from Point72/tkp/003
Bump version: 0.0.2 → 0.0.3
2 parents dc3cde4 + b05c391 commit 7fddb2b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.2
2+
current_version = 0.0.3
33
commit = True
44
tag = False
55

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project Configuration #
33
#########################
44
cmake_minimum_required(VERSION 3.20.0)
5-
project(csp VERSION "0.0.2")
5+
project(csp VERSION "0.0.3")
66
set(CMAKE_CXX_STANDARD 17)
77

88
###################################################################################################################################################

csp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from . import cache_support, stats
3434

35-
__version__ = "0.0.2"
35+
__version__ = "0.0.3"
3636

3737

3838
def get_include_path():

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name = "csp"
1414
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
1515
description="csp is a high performance reactive stream processing library, written in C++ and Python"
1616
readme = "README.md"
17-
version = "0.0.2"
17+
version = "0.0.3"
1818
requires-python = ">=3.8"
1919

2020
dependencies = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
setup(
104104
name="csp",
105-
version="0.0.2",
105+
version="0.0.3",
106106
packages=["csp"],
107107
cmake_install_dir="csp",
108108
cmake_args=cmake_args,

0 commit comments

Comments
 (0)