From 317c61665610c2fdf3585df8a71a837fbfd530d5 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Wed, 9 Dec 2020 13:35:05 +0100 Subject: [PATCH] 0.8.1rc2 --- deployment/project.env | 2 +- pyproject.toml | 2 +- src/inventory/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/project.env b/deployment/project.env index 694a647..a141bcd 100644 --- a/deployment/project.env +++ b/deployment/project.env @@ -1,3 +1,3 @@ export PROJECT_NAME=pyinventory export PROJECT_PACKAGE_NAME=pyinventory -export PROJECT_VERSION=0.8.1rc2 +export PROJECT_VERSION=0.8.1rc3 diff --git a/pyproject.toml b/pyproject.toml index 0f67144..9b36bdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.8.1rc2" +version = "0.8.1rc3" 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 a54a355..e665d2e 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.1rc2" +__version__ = "0.8.1rc3" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"