From 10ff65cd59d5c1843bbdcb89479ee3db10a5af1a Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 23 Nov 2020 19:08:31 +0100 Subject: [PATCH] release as v0.7.0 --- 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 666844e..c7c808d 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.7.0rc2 +export PROJECT_VERSION=0.7.0 diff --git a/pyproject.toml b/pyproject.toml index 14c78d5..2366f22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.7.0rc2" +version = "0.7.0" 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 9ffa58a..6ba40bf 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.7.0rc2" +__version__ = "0.7.0" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"