diff --git a/oneup/__init__.py b/oneup/__init__.py index 8f33f0d..44d6c05 100644 --- a/oneup/__init__.py +++ b/oneup/__init__.py @@ -2,4 +2,4 @@ `oneup` is a CLI tool to check for dependency updates for Python. """ -__version__ = '0.2.0' +__version__ = "0.2.1" diff --git a/pyproject.toml b/pyproject.toml index 52f3689..141ae1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oneup" -version = "0.2.0" +version = "0.2.1" description = "A CLI tool to check for dependency updates for Python, in Python" authors = ["Andrés Ignacio Torres "] license = "AGPL-3.0-only" diff --git a/tests/test_oneup.py b/tests/test_oneup.py index ab82ab8..0b53e22 100644 --- a/tests/test_oneup.py +++ b/tests/test_oneup.py @@ -10,4 +10,4 @@ def test_version(): Tests that the oneup module is set to the correct version """ - assert __version__ == "0.2.0" + assert __version__ == "0.2.1"