Skip to content

Commit 6e3bc5c

Browse files
authored
Merge pull request #150 from ngoldbaum/release/0.0.2
Bump version: 0.0.1 → 0.0.2
2 parents a85bb5f + 781bf7e commit 6e3bc5c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 0.0.2
33
commit = True
44
tag = False
55

CMakeLists.txt

+1-1
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.1")
5+
project(csp VERSION "0.0.2")
66
set(CMAKE_CXX_STANDARD 17)
77

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

csp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from . import cache_support, stats
3434

35-
__version__ = "0.0.1"
35+
__version__ = "0.0.2"
3636

3737

3838
def get_include_path():

pyproject.toml

+1-1
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.1"
17+
version = "0.0.2"
1818
requires-python = ">=3.8"
1919

2020
dependencies = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="csp",
73-
version="0.0.1",
73+
version="0.0.2",
7474
packages=["csp"],
7575
cmake_install_dir="csp",
7676
cmake_args=cmake_args,

0 commit comments

Comments
 (0)