From ac688551b02f32bc140eac3bddfc172bb7d06799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Ignacio=20Torres?= Date: Sun, 12 Dec 2021 00:38:19 -0400 Subject: [PATCH] v0.1.2 --- oneup/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_oneup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/oneup/__init__.py b/oneup/__init__.py index bc66e3b..27abaa8 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.1.1' +__version__ = '0.1.2' diff --git a/pyproject.toml b/pyproject.toml index 5568b2c..7af8e48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oneup" -version = "0.1.1" +version = "0.1.2" 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 74ce96d..94204a5 100644 --- a/tests/test_oneup.py +++ b/tests/test_oneup.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.1.1' + assert __version__ == '0.1.2'