Skip to content

Commit b7483a2

Browse files
authored
🔖 v0.1.1 (#4)
increment version
1 parent 30c8572 commit b7483a2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

DEVELOPMENT.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.1.1
6+
7+
- [x] Output reading in parallel thread pipeline.
8+
- [x] Option to use module global ThreadPoolExecutor for functional operation.
9+
- [x] Add data argument to functional pipeline.
10+
- [x] Pipeline is None after `Pipeline`'s `cleanup` method is called.
11+
- [x] Serial pipeline data become None if it has been read once.
12+
513
### v0.1.0
614

715
- [x] Poetry initialization
@@ -16,14 +24,6 @@
1624

1725
## On-going
1826

19-
### v0.1.1
20-
21-
- [x] Output reading in parallel thread pipeline.
22-
- [x] Option to use module global ThreadPoolExecutor for functional operation.
23-
- [x] Add data argument to functional pipeline.
24-
- [x] Pipeline is None after `Pipeline`'s `cleanup` method is called.
25-
- [x] Serial pipeline data become None if it has been read once.
26-
2727
### v0.1.2
2828

2929
- [ ] Well explained sample usage of the demo in `.ipynb` format.

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.0"
26+
release = "v0.1.1"
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.0"
3+
version = "0.1.1"
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
@@ -2,4 +2,4 @@
22
from pystream.pipeline.pipeline import Pipeline
33
from pystream.stage.stage import Stage
44

5-
__version__ = "0.1.0"
5+
__version__ = "0.1.1"

tests/test_pystream.py

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

33

44
def test_version():
5-
assert __version__ == "0.1.0"
5+
assert __version__ == "0.1.1"

0 commit comments

Comments
 (0)