Skip to content

Commit bb04478

Browse files
authored
CSP 0.13.2 patch release (#655)
Signed-off-by: Rob Ambalu <robert.ambalu@point72.com>
1 parent 1cbd880 commit bb04478

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.13.1")
5+
project(csp VERSION "0.13.2")
66
set(CMAKE_CXX_STANDARD 20)
77

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

csp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from . import stats
3333

34-
__version__ = "0.13.1"
34+
__version__ = "0.13.2"
3535

3636

3737
def get_include_path():

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name = "csp"
1818
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
1919
description="csp is a high performance reactive stream processing library, written in C++ and Python"
2020
readme = "README.md"
21-
version = "0.13.1"
21+
version = "0.13.2"
2222
requires-python = ">=3.10"
2323

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149

150150
setup(
151151
name="csp",
152-
version="0.13.1",
152+
version="0.13.2",
153153
packages=["csp"],
154154
cmake_install_dir="csp",
155155
cmake_args=cmake_args,

0 commit comments

Comments
 (0)