diff --git a/pyproject.toml b/pyproject.toml index 0810a65..8864652 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ packages = [ ] readme = "README.md" repository = "https://github.com/twosigma/uberjob" -version = "1.0.0" +version = "1.0.1" [tool.poetry.dependencies] networkx = "^2.5" diff --git a/src/uberjob/__init__.py b/src/uberjob/__init__.py index 34be7d3..ac610e5 100644 --- a/src/uberjob/__init__.py +++ b/src/uberjob/__init__.py @@ -29,7 +29,7 @@ __author__ = "Daniel Shields, Timothy Shields" __maintainer__ = "Daniel Shields, Timothy Shields" __email__ = "Daniel.Shields@twosigma.com, Timothy.Shields@twosigma.com" -__version__ = "1.0.0" +__version__ = "1.0.1" from uberjob import graph, progress, stores from uberjob._errors import CallError, NotTransformedError diff --git a/tests/test_version.py b/tests/test_version.py index 7d230fc..4c34b2e 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -18,7 +18,7 @@ import uberjob -EXPECTED_VERSION = "1.0.0" +EXPECTED_VERSION = "1.0.1" REPOSITORY_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))