Skip to content

Commit c7ec61a

Browse files
committed
release v0.0.5
Signed-off-by: Rob Ambalu <robert.ambalu@point72.com>
1 parent 3eed9ee commit c7ec61a

5 files changed

Lines changed: 5 additions & 8 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
[bumpversion]
2-
current_version = 0.0.4
2+
current_version = 0.0.5
33
commit = False
44
tag = False
5-
# We don't commit right now, but
6-
# if we do in the future, this will
7-
# ensure commits are signed
85
commit_args = -s
96

107
[bumpversion:file:csp/__init__.py]

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.0.4")
5+
project(csp VERSION "0.0.5")
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.0.4"
34+
__version__ = "0.0.5"
3535

3636

3737
def get_include_path():

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name = "csp"
1414
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
1515
description="csp is a high performance reactive stream processing library, written in C++ and Python"
1616
readme = "README.md"
17-
version = "0.0.4"
17+
version = "0.0.5"
1818
requires-python = ">=3.8"
1919

2020
dependencies = [

setup.py

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

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

0 commit comments

Comments
 (0)