diff --git a/CMakeLists.txt b/CMakeLists.txt index 104cbc4a9..1c8ae0c1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Project Configuration # ######################### cmake_minimum_required(VERSION 3.20.0) -project(csp VERSION "0.0.9") +project(csp VERSION "0.0.10") set(CMAKE_CXX_STANDARD 20) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index 6d86b75b7..b4fe2ff6a 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -31,7 +31,7 @@ from . import stats -__version__ = "0.0.9" +__version__ = "0.0.10" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index a6130f17b..f8129fe2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ name = "csp" authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}] description="csp is a high performance reactive stream processing library, written in C++ and Python" readme = "README.md" -version = "0.0.9" +version = "0.0.10" requires-python = ">=3.9" dependencies = [ @@ -118,7 +118,7 @@ slack = [ ] [tool.bumpversion] -current_version = "0.0.9" +current_version = "0.0.10" commit = false tag = false commit_args = "-s" diff --git a/setup.py b/setup.py index b8c642efd..3bbf96fac 100644 --- a/setup.py +++ b/setup.py @@ -121,7 +121,7 @@ setup( name="csp", - version="0.0.9", + version="0.0.10", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,