Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.10")
project(csp VERSION "0.0.11")
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.10"
__version__ = "0.0.11"


def get_include_path():
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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.10"
version = "0.0.11"
requires-python = ">=3.9"

dependencies = [
Expand Down Expand Up @@ -116,7 +116,7 @@ slack = [
]

[tool.bumpversion]
current_version = "0.0.10"
current_version = "0.0.11"
commit = false
tag = false
commit_args = "-s"
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.10",
version="0.0.11",
packages=["csp"],
cmake_install_dir="csp",
cmake_args=cmake_args,
Expand Down
Loading