Skip to content

Commit 46ed3bc

Browse files
authored
CSP v0.0.10 (#459)
Signed-off-by: Rob Ambalu <robert.ambalu@point72.com>
1 parent bd7fed2 commit 46ed3bc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project Configuration #
33
#########################
44
cmake_minimum_required(VERSION 3.20.0)
5-
project(csp VERSION "0.0.9")
5+
project(csp VERSION "0.0.10")
66
set(CMAKE_CXX_STANDARD 20)
77

88
###################################################################################################################################################

csp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from . import stats
3333

34-
__version__ = "0.0.9"
34+
__version__ = "0.0.10"
3535

3636

3737
def get_include_path():

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name = "csp"
1616
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
1717
description="csp is a high performance reactive stream processing library, written in C++ and Python"
1818
readme = "README.md"
19-
version = "0.0.9"
19+
version = "0.0.10"
2020
requires-python = ">=3.9"
2121

2222
dependencies = [
@@ -118,7 +118,7 @@ slack = [
118118
]
119119

120120
[tool.bumpversion]
121-
current_version = "0.0.9"
121+
current_version = "0.0.10"
122122
commit = false
123123
tag = false
124124
commit_args = "-s"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121

122122
setup(
123123
name="csp",
124-
version="0.0.9",
124+
version="0.0.10",
125125
packages=["csp"],
126126
cmake_install_dir="csp",
127127
cmake_args=cmake_args,

0 commit comments

Comments
 (0)