From b0d023da07914b820e2a97753b4c2e01f622d7a7 Mon Sep 17 00:00:00 2001 From: Adam Glustein Date: Fri, 28 Feb 2025 19:58:13 -0500 Subject: [PATCH] Release 0.0.11 Signed-off-by: Adam Glustein --- CMakeLists.txt | 2 +- csp/__init__.py | 2 +- pyproject.toml | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c8ae0c1d..6ef28c837 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.10") +project(csp VERSION "0.0.11") set(CMAKE_CXX_STANDARD 20) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index b4fe2ff6a..7f5211a8c 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -31,7 +31,7 @@ from . import stats -__version__ = "0.0.10" +__version__ = "0.0.11" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index df6dce3ce..13bbb5105 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.10" +version = "0.0.11" requires-python = ">=3.9" dependencies = [ @@ -116,7 +116,7 @@ slack = [ ] [tool.bumpversion] -current_version = "0.0.10" +current_version = "0.0.11" commit = false tag = false commit_args = "-s" diff --git a/setup.py b/setup.py index 3bbf96fac..ff92e8e45 100644 --- a/setup.py +++ b/setup.py @@ -121,7 +121,7 @@ setup( name="csp", - version="0.0.10", + version="0.0.11", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,