Skip to content

Commit 9c0fa4a

Browse files
authored
🔖 v0.2.0 (#42)
bump version
1 parent 39a1911 commit 9c0fa4a

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Released
44

5+
### v0.2.0
6+
7+
- [x] Support for native mixed (serial and parallel) operation.
8+
- [x] Specify custom profiler DB path
9+
- [x] Protect against multiple profiling in mixed pipeline
10+
- [x] CI test for notebooks
11+
- [x] CI test using python 3.11
12+
513
### v0.1.3
614

715
- [x] Add built-in pipeline profiling feature.
@@ -39,14 +47,6 @@
3947

4048
## On-going
4149

42-
### v0.2.0
43-
44-
- [x] Support for native mixed (serial and parallel) operation.
45-
- [x] Specify custom profiler DB path
46-
- [x] Protect against multiple profiling in mixed pipeline
47-
- [x] CI test for notebooks
48-
- [x] CI test using python 3.11
49-
5050
### v0.2.1
5151

5252
- [ ] Code formatting CI.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Mukhlas Adib"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "v0.1.3"
26+
release = "v0.2.0"
2727

2828

2929
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pystream-pipeline"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
description = "Python package to create and manage fast parallelized data processing pipeline for real-time application"
55
authors = ["Mukhlas Adib <adib.rasyidy@gmail.com>"]
66
license = "MIT"

pystream/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pystream.pipeline.pipeline import Pipeline
99
from pystream.stage.stage import Stage
1010

11-
__version__ = "0.1.3"
11+
__version__ = "0.2.0"
1212

1313
logger = LOGGER
1414
"""

tests/test_pystream.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33

44

55
def test_version():
6-
assert __version__ == "0.1.3"
6+
assert __version__ == "0.2.0"
77

88

99
def test_import():
1010
from pystream import Stage, Pipeline, MAIN_PIPELINE_NAME, logger
1111
from pystream.functional import func_parallel_thread, func_serial
1212

13+
1314
def test_constants():
14-
assert MAIN_PIPELINE_NAME == _PIPELINE_NAME_IN_PROFILE
15+
assert MAIN_PIPELINE_NAME == _PIPELINE_NAME_IN_PROFILE

0 commit comments

Comments
 (0)