Skip to content

Commit 952de07

Browse files
authored
Release v0.14.0 (#660)
Signed-off-by: Adam Glustein <[email protected]>
1 parent 963ef19 commit 952de07

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.2")
5+
project(csp VERSION "0.14.0")
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.2"
34+
__version__ = "0.14.0"
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 = "[email protected]"}]
1919
description="csp is a high performance reactive stream processing library, written in C++ and Python"
2020
readme = "README.md"
21-
version = "0.13.2"
21+
version = "0.14.0"
2222
requires-python = ">=3.10"
2323

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

120120
[tool.bumpversion]
121-
current_version = "0.13.2"
121+
current_version = "0.14.0"
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.2",
152+
version="0.14.0",
153153
packages=["csp"],
154154
cmake_install_dir="csp",
155155
cmake_args=cmake_args,

0 commit comments

Comments
 (0)