From b8c4519a8aa9ac72d2a90f53dcdd2bb459ea2812 Mon Sep 17 00:00:00 2001 From: Arham Chopra Date: Mon, 29 Jun 2026 16:37:44 -0400 Subject: [PATCH] CSP v0.17.0 Signed-off-by: Arham Chopra --- 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 2e3606358..3ebceb014 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Project Configuration # ######################### cmake_minimum_required(VERSION 3.20.0) -project(csp VERSION "0.16.0") +project(csp VERSION "0.17.0") set(CMAKE_CXX_STANDARD 20) ################################################################################################################################################### diff --git a/csp/__init__.py b/csp/__init__.py index e4616ab9b..46276e510 100644 --- a/csp/__init__.py +++ b/csp/__init__.py @@ -31,7 +31,7 @@ from . import stats -__version__ = "0.16.0" +__version__ = "0.17.0" def get_include_path(): diff --git a/pyproject.toml b/pyproject.toml index 84563bd73..a0dd8e61d 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.16.0" +version = "0.17.0" requires-python = ">=3.10" dependencies = [ @@ -118,7 +118,7 @@ slack = [ ] [tool.bumpversion] -current_version = "0.16.0" +current_version = "0.17.0" commit = false tag = false commit_args = "-s" diff --git a/setup.py b/setup.py index 1a8545605..d09d547d0 100644 --- a/setup.py +++ b/setup.py @@ -149,7 +149,7 @@ setup( name="csp", - version="0.16.0", + version="0.17.0", packages=["csp"], cmake_install_dir="csp", cmake_args=cmake_args,