diff --git a/README.creole b/README.creole index 4592418..0d1f9bf 100644 --- a/README.creole +++ b/README.creole @@ -185,9 +185,11 @@ Files are separated into: "/src/" and "/development/" == history -* [[https://github.com/jedie/PyInventory/compare/v0.8.3...master|compare v0.8.3...master]] **dev** -** Search items in change list by "kind" and "tags", too +* [[https://github.com/jedie/PyInventory/compare/v0.8.4...master|compare v0.8.4...master]] **dev** ** tbc +* [[https://github.com/jedie/PyInventory/compare/v0.8.3...v0.8.4|v0.8.4 - 19.01.2021]] +** Search items in change list by "kind" and "tags", too +** update requirements * [[https://github.com/jedie/PyInventory/compare/v0.8.2...v0.8.3|v0.8.3 - 29.12.2020]] ** update requirements ** remove colorama from direct dependencies diff --git a/pyproject.toml b/pyproject.toml index d17fc95..4387bb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.8.3" +version = "0.8.4" description = "Web based management to catalog things including state and location etc. using Python/Django." authors = ["JensDiemer "] packages = [ diff --git a/src/inventory/__init__.py b/src/inventory/__init__.py index 99c442f..744242f 100644 --- a/src/inventory/__init__.py +++ b/src/inventory/__init__.py @@ -4,7 +4,7 @@ :license: GNU GPL v3 or above, see LICENSE for more details. """ -__version__ = "0.8.3" +__version__ = "0.8.4" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"