Skip to content

Commit

Permalink
release v0.0.5
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Ambalu <[email protected]>
  • Loading branch information
robambalu committed Jun 26, 2024
1 parent 3eed9ee commit c7ec61a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.5
commit = False
tag = False
# We don't commit right now, but
# if we do in the future, this will
# ensure commits are signed
commit_args = -s

[bumpversion:file:csp/__init__.py]
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Project Configuration #
#########################
cmake_minimum_required(VERSION 3.20.0)
project(csp VERSION "0.0.4")
project(csp VERSION "0.0.5")
set(CMAKE_CXX_STANDARD 20)

###################################################################################################################################################
Expand Down
2 changes: 1 addition & 1 deletion csp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

from . import stats

__version__ = "0.0.4"
__version__ = "0.0.5"


def get_include_path():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "csp"
authors = [{name = "the csp authors", email = "[email protected]"}]
description="csp is a high performance reactive stream processing library, written in C++ and Python"
readme = "README.md"
version = "0.0.4"
version = "0.0.5"
requires-python = ">=3.8"

dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

setup(
name="csp",
version="0.0.4",
version="0.0.5",
packages=["csp"],
cmake_install_dir="csp",
cmake_args=cmake_args,
Expand Down

0 comments on commit c7ec61a

Please sign in to comment.