diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2d69a06d..264c7ef1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,10 +1,7 @@ [bumpversion] -current_version = 0.0.4 +current_version = 0.0.5 commit = False tag = False -# We don't commit right now, but -# if we do in the future, this will -# ensure commits are signed commit_args = -s [bumpversion:file:csp/__init__.py] diff --git a/CMakeLists.txt b/CMakeLists.txt index 14350c70..d2df6650 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.4") +project(csp VERSION "0.0.5") set(CMAKE_CXX_STANDARD 20) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index 48cea50b..a223dc7a 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -31,7 +31,7 @@ from . import stats -__version__ = "0.0.4" +__version__ = "0.0.5" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index cfef783a..7a19ea3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,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.4" +version = "0.0.5" requires-python = ">=3.8" dependencies = [ diff --git a/setup.py b/setup.py index edc709e3..ea2a1fa6 100644 --- a/setup.py +++ b/setup.py @@ -121,7 +121,7 @@ setup( name="csp", - version="0.0.4", + version="0.0.5", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,