diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 364777f3..17de141e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 0.14.1 + +- feat: add flags (e.g. `--help`) to `utils.is_loading_pipeline` to check arguments in `sys.argv` + ## 0.14.0 - deps: drop support for python 3.8 diff --git a/pipen/version.py b/pipen/version.py index 457fed28..9e37f545 100644 --- a/pipen/version.py +++ b/pipen/version.py @@ -1,3 +1,3 @@ """Provide version of pipen""" -__version__ = "0.14.0" +__version__ = "0.14.1" diff --git a/pyproject.toml b/pyproject.toml index b6c30d3c..1c07a004 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "pipen" -version = "0.14.0" +version = "0.14.1" description = "A pipeline framework for python" authors = [ "pwwang ",] license = "MIT"