Skip to content

Commit

Permalink
馃敄 v0.2.0 (#42)
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
MukhlasAdib committed Nov 4, 2023
1 parent 39a1911 commit 9c0fa4a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Released

### v0.2.0

- [x] Support for native mixed (serial and parallel) operation.
- [x] Specify custom profiler DB path
- [x] Protect against multiple profiling in mixed pipeline
- [x] CI test for notebooks
- [x] CI test using python 3.11

### v0.1.3

- [x] Add built-in pipeline profiling feature.
Expand Down Expand Up @@ -39,14 +47,6 @@

## On-going

### v0.2.0

- [x] Support for native mixed (serial and parallel) operation.
- [x] Specify custom profiler DB path
- [x] Protect against multiple profiling in mixed pipeline
- [x] CI test for notebooks
- [x] CI test using python 3.11

### v0.2.1

- [ ] Code formatting CI.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Mukhlas Adib"

# The full version, including alpha/beta/rc tags
release = "v0.1.3"
release = "v0.2.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pystream-pipeline"
version = "0.1.3"
version = "0.2.0"
description = "Python package to create and manage fast parallelized data processing pipeline for real-time application"
authors = ["Mukhlas Adib <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pystream/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pystream.pipeline.pipeline import Pipeline
from pystream.stage.stage import Stage

__version__ = "0.1.3"
__version__ = "0.2.0"

logger = LOGGER
"""
Expand Down
5 changes: 3 additions & 2 deletions tests/test_pystream.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@


def test_version():
assert __version__ == "0.1.3"
assert __version__ == "0.2.0"


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


def test_constants():
assert MAIN_PIPELINE_NAME == _PIPELINE_NAME_IN_PROFILE
assert MAIN_PIPELINE_NAME == _PIPELINE_NAME_IN_PROFILE

0 comments on commit 9c0fa4a

Please sign in to comment.