From b05c3918a0497e270551bda26d6263e1ef40fac1 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Wed, 27 Mar 2024 14:10:23 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.2=20=E2=86=92=200.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim Paine --- .bumpversion.cfg | 2 +- CMakeLists.txt | 2 +- csp/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e61834c7..5524435b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.0.3 commit = True tag = False diff --git a/CMakeLists.txt b/CMakeLists.txt index fbdf2783..0014cd4f 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.2") +project(csp VERSION "0.0.3") set(CMAKE_CXX_STANDARD 17) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index 3751c63d..b7cc55c1 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -32,7 +32,7 @@ from . import cache_support, stats -__version__ = "0.0.2" +__version__ = "0.0.3" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index 9e5a7bbd..7fea73a0 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.2" +version = "0.0.3" requires-python = ">=3.8" dependencies = [ diff --git a/setup.py b/setup.py index ab8cc2f0..0ceeb151 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,7 @@ setup( name="csp", - version="0.0.2", + version="0.0.3", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,