diff --git a/oneup/__init__.py b/oneup/__init__.py index e54a7eb..c59a583 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.5.0" +__version__ = "0.6.0" diff --git a/pyproject.toml b/pyproject.toml index 544f545..2d9c527 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oneup" -version = "0.5.0" +version = "0.6.0" 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 b34a2d7..3a999d7 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.5.0" + assert __version__ == "0.6.0"