diff --git a/pyproject.toml b/pyproject.toml index a3e085d..85e85c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ license = { text = "MIT" } name = "pyflowx" readme = "README.md" requires-python = ">=3.8" -version = "0.1.2" +version = "0.1.3" [project.scripts] pymake = "pyflowx.cli.pymake:main" diff --git a/src/pyflowx/__init__.py b/src/pyflowx/__init__.py index 2ff78d1..4a554fd 100644 --- a/src/pyflowx/__init__.py +++ b/src/pyflowx/__init__.py @@ -78,7 +78,7 @@ from .runner import CliExitCode, CliRunner from .storage import JSONBackend, MemoryBackend, StateBackend from .task import TaskCmd, TaskEvent, TaskResult, TaskSpec, TaskStatus -__version__ = "0.1.2" +__version__ = "0.1.3" __all__ = [ "IS_LINUX",