Skip to content

Commit 064fbdb

Browse files
committed
CSP v0.9.0
Signed-off-by: Rob Ambalu <robert.ambalu@point72.com>
1 parent 02e2a0f commit 064fbdb

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

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.8.0")
5+
project(csp VERSION "0.9.0")
66
set(CMAKE_CXX_STANDARD 20)
77

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ dependencies-vcpkg: ## install dependencies via vcpkg
203203
cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg install
204204

205205
dependencies-win: ## install dependencies via windows
206-
choco install cmake --version=3.31.6
206+
choco install cmake --version=3.31.6 --allow-downgrade
207207
choco install curl winflexbison ninja unzip zip --no-progress -y
208208

209209
############################################################################################

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.8.0"
34+
__version__ = "0.9.0"
3535

3636

3737
def get_include_path():

pyproject.toml

Lines changed: 2 additions & 2 deletions
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.8.0"
19+
version = "0.9.0"
2020
requires-python = ">=3.9"
2121

2222
dependencies = [
@@ -116,7 +116,7 @@ slack = [
116116
]
117117

118118
[tool.bumpversion]
119-
current_version = "0.8.0"
119+
current_version = "0.9.0"
120120
commit = false
121121
tag = false
122122
commit_args = "-s"

setup.py

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

123123
setup(
124124
name="csp",
125-
version="0.8.0",
125+
version="0.9.0",
126126
packages=["csp"],
127127
cmake_install_dir="csp",
128128
cmake_args=cmake_args,

0 commit comments

Comments
 (0)