From 2c98b01212cc87369d63a60795baed783a13a26b Mon Sep 17 00:00:00 2001 From: david Date: Fri, 7 Oct 2022 00:05:18 +0200 Subject: [PATCH] Bump version for new release to 0.5.0 --- odooshow/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_odooshow.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/odooshow/__init__.py b/odooshow/__init__.py index 32d1ef6..82c6eb9 100644 --- a/odooshow/__init__.py +++ b/odooshow/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" __author__ = "David Vidal" __email__ = "chienandalu@gmail.com" __doc__ = """A library to give goggles when diving into the Odoo Shell""" diff --git a/pyproject.toml b/pyproject.toml index c26b32e..7b57f39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odooshow" -version = "0.4.0" +version = "0.5.0" description = "Make use of rich power tools to have nice formatted data in Odoo shells" authors = ["David Vidal "] diff --git a/tests/test_odooshow.py b/tests/test_odooshow.py index dc06006..d215bb9 100644 --- a/tests/test_odooshow.py +++ b/tests/test_odooshow.py @@ -3,4 +3,4 @@ def test_version(): # TODO: Add tests. Not easy though as we need to setup a minimum Odoo instance. - assert __version__ == "0.4.0" + assert __version__ == "0.5.0"