diff --git a/CMakeLists.txt b/CMakeLists.txt index 5cdaf59e1..c96c3f9f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Project Configuration # ######################### cmake_minimum_required(VERSION 3.20.0) -project(csp VERSION "0.14.1") +project(csp VERSION "0.15.0") set(CMAKE_CXX_STANDARD 20) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index 51a52d984..0e9b22df7 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -31,7 +31,7 @@ from . import stats -__version__ = "0.14.1" +__version__ = "0.15.0" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index 3a4f26a50..5aea1f64b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,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.14.1" +version = "0.15.0" requires-python = ">=3.10" dependencies = [ @@ -118,7 +118,7 @@ slack = [ ] [tool.bumpversion] -current_version = "0.14.1" +current_version = "0.15.0" commit = false tag = false commit_args = "-s" diff --git a/setup.py b/setup.py index 3af10e3fb..48d9ee01d 100644 --- a/setup.py +++ b/setup.py @@ -149,7 +149,7 @@ setup( name="csp", - version="0.14.1", + version="0.15.0", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,