Skip to content

Commit 2dc6255

Browse files
authored
🔖 v0.1.3 (#30)
bump version
1 parent db43012 commit 2dc6255

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

CHANGELOG.md

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

33
## Released
44

5+
### v0.1.3
6+
7+
- [x] Add built-in pipeline profiling feature.
8+
- [x] `forward` method of `pystream.Pipeline` have default value: the flag to use input generator
9+
- [x] Well-explained sample usage of the demo in `.ipynb` format.
10+
- [x] Unit tests for staged pipeline operations.
11+
- [x] Unit tests for functional pipeline operations.
12+
- [x] Use logger instead of print
13+
- [x] Specify stage name
14+
515
### v0.1.2
616

717
- [x] Option to use blocking pipeline input for parallel pipeline.
@@ -29,16 +39,6 @@
2939

3040
## On-going
3141

32-
### v0.1.3
33-
34-
- [x] Add built-in pipeline profiling feature.
35-
- [x] `forward` method of `pystream.Pipeline` have default value: the flag to use input generator
36-
- [x] Well-explained sample usage of the demo in `.ipynb` format.
37-
- [x] Unit tests for staged pipeline operations.
38-
- [x] Unit tests for functional pipeline operations.
39-
- [x] Use logger instead of print
40-
- [x] Specify stage name
41-
4242
### v0.1.4
4343

4444
- [ ] Interface unification of serial and parallel pipeline stages by adding a wrapper for the stages.

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.2"
26+
release = "v0.1.3"
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.2"
3+
version = "0.1.3"
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
@@ -3,6 +3,6 @@
33
from pystream.pipeline.pipeline import Pipeline
44
from pystream.stage.stage import Stage
55

6-
__version__ = "0.1.2"
6+
__version__ = "0.1.3"
77

88
logger = LOGGER

tests/test_pystream.py

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

33

44
def test_version():
5-
assert __version__ == "0.1.2"
5+
assert __version__ == "0.1.3"
66

77

88
def test_import():

0 commit comments

Comments
 (0)