From 7159f00e5b4b01ca1c6034e019a3f85563d1ba81 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sun, 6 Dec 2020 19:20:36 +0100 Subject: [PATCH] release v0.8.0rc1 --- README.creole | 3 ++- README.rst | 8 +++++--- deployment/project.env | 2 +- pyproject.toml | 2 +- src/inventory/__init__.py | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.creole b/README.creole index 4d8f3d1..a34a125 100644 --- a/README.creole +++ b/README.creole @@ -187,8 +187,9 @@ Files are separated into: "/src/" and "/development/" == history * [[https://github.com/jedie/PyInventory/compare/v0.7.0...master|compare v0.7.0...master]] **dev** -** Outsource the "MEDIA file serve" part into [[https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme|django.tools.serve_media_app]] ** tbc +* [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0rc1|v0.8.0rc1 - 06.12.2020]] +** Outsource the "MEDIA file serve" part into [[https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme|django.tools.serve_media_app]] * [[https://github.com/jedie/PyInventory/compare/v0.6.0...v0.7.0|v0.7.0 - 23.11.2020]] ** Change deployment setup: *** Replace uwsgi with gunicorn diff --git a/README.rst b/README.rst index 45020ea..b090074 100644 --- a/README.rst +++ b/README.rst @@ -254,10 +254,12 @@ history * `compare v0.7.0...master `_ **dev** - * Outsource the "MEDIA file serve" part into `django.tools.serve_media_app `_ - * tbc +* `v0.8.0rc1 - 06.12.2020 `_ + + * Outsource the "MEDIA file serve" part into `django.tools.serve_media_app `_ + * `v0.7.0 - 23.11.2020 `_ * Change deployment setup: @@ -377,4 +379,4 @@ donation ------------ -``Note: this file is generated from README.creole 2020-12-06 19:12:25 with "python-creole"`` \ No newline at end of file +``Note: this file is generated from README.creole 2020-12-06 19:20:04 with "python-creole"`` \ No newline at end of file diff --git a/deployment/project.env b/deployment/project.env index c7c808d..6c4e78d 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.0 +export PROJECT_VERSION=0.8.0rc1 diff --git a/pyproject.toml b/pyproject.toml index 623ad65..ab4ef61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.7.0" +version = "0.8.0rc1" 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 6ba40bf..4ba7b3c 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.0" +__version__ = "0.8.0rc1" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"