diff --git a/pyproject.toml b/pyproject.toml index 552f239..ecde2ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "anomalytics" description = "The ultimate anomaly detection library." readme = "README.md" -version = "0.1.2" +version = "0.1.3" license = {file = "LICENSE"} requires-python = ">=3.10" authors = [ diff --git a/src/anomalytics/__init__.py b/src/anomalytics/__init__.py index 8ec3b06..b349dad 100644 --- a/src/anomalytics/__init__.py +++ b/src/anomalytics/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.2" +__version__ = "0.1.3" __all__ = [ "get_anomaly", diff --git a/tests/test_version.py b/tests/test_version.py index 7523111..6a198d5 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_pkg_version(): - assert __version__ == "0.1.2" + assert __version__ == "0.1.3"