Skip to content

Commit 8ffbc49

Browse files
authored
🔖 v0.1.2 (#6)
bump up version
1 parent 055acea commit 8ffbc49

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

DEVELOPMENT.md

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

33
## Released
44

5+
### v0.1.2
6+
7+
- [x] Option to use blocking pipeline input for parallel pipeline.
8+
- [x] An application example: [KITTI mapping](https://github.com/MukhlasAdib/KITTI_Mapping).
9+
510
### v0.1.1
611

712
- [x] Output reading in parallel thread pipeline.
@@ -24,11 +29,6 @@
2429

2530
## On-going
2631

27-
### v0.1.2
28-
29-
- [x] Option to use blocking pipeline input for parallel pipeline.
30-
- [x] An application example: [KITTI mapping](https://github.com/MukhlasAdib/KITTI_Mapping).
31-
3232
### v0.1.3
3333

3434
- [ ] 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.1"
26+
release = "v0.1.2"
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.1"
3+
version = "0.1.2"
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.1"
5+
__version__ = "0.1.2"

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.1"
5+
assert __version__ == "0.1.2"

0 commit comments

Comments
 (0)