File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Released
4
4
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
+
5
13
### v0.1.0
6
14
7
15
- [x] Poetry initialization
16
24
17
25
## On-going
18
26
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
-
27
27
### v0.1.2
28
28
29
29
- [ ] Well explained sample usage of the demo in ` .ipynb ` format.
Original file line number Diff line number Diff line change 23
23
author = "Mukhlas Adib"
24
24
25
25
# The full version, including alpha/beta/rc tags
26
- release = "v0.1.0 "
26
+ release = "v0.1.1 "
27
27
28
28
29
29
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pystream-pipeline"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
description = " Python package to create and manage fast parallelized data processing pipeline for real-time application"
5
5
authors = [" Mukhlas Adib <adib.rasyidy@gmail.com>" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 2
2
from pystream .pipeline .pipeline import Pipeline
3
3
from pystream .stage .stage import Stage
4
4
5
- __version__ = "0.1.0 "
5
+ __version__ = "0.1.1 "
Original file line number Diff line number Diff line change 2
2
3
3
4
4
def test_version ():
5
- assert __version__ == "0.1.0 "
5
+ assert __version__ == "0.1.1 "
You can’t perform that action at this time.
0 commit comments