release as v0.8.0

pull/31/head
JensDiemer 2020-12-06 19:31:29 +01:00
rodzic 7159f00e5b
commit 5f8865989f
5 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -186,9 +186,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**
* [[https://github.com/jedie/PyInventory/compare/v0.8.0...master|compare v0.8.0...master]] **dev**
** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0rc1|v0.8.0rc1 - 06.12.2020]]
* [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0|v0.8.0 - 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:

Wyświetl plik

@ -252,11 +252,11 @@ Files are separated into: "/src/" and "/development/"
history
-------
* `compare v0.7.0...master <https://github.com/jedie/PyInventory/compare/v0.7.0...master>`_ **dev**
* `compare v0.8.0...master <https://github.com/jedie/PyInventory/compare/v0.8.0...master>`_ **dev**
* tbc
* `v0.8.0rc1 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0rc1>`_
* `v0.8.0 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0>`_
* Outsource the "MEDIA file serve" part into `django.tools.serve_media_app <https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme>`_
@ -379,4 +379,4 @@ donation
------------
``Note: this file is generated from README.creole 2020-12-06 19:20:04 with "python-creole"``
``Note: this file is generated from README.creole 2020-12-06 19:33:09 with "python-creole"``

Wyświetl plik

@ -1,3 +1,3 @@
export PROJECT_NAME=pyinventory
export PROJECT_PACKAGE_NAME=pyinventory
export PROJECT_VERSION=0.8.0rc1
export PROJECT_VERSION=0.8.0

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry]
name = "PyInventory"
version = "0.8.0rc1"
version = "0.8.0"
description = "Web based management to catalog things including state and location etc. using Python/Django."
authors = ["JensDiemer <git@jensdiemer.de>"]
packages = [

Wyświetl plik

@ -4,7 +4,7 @@
:license: GNU GPL v3 or above, see LICENSE for more details.
"""
__version__ = "0.8.0rc1"
__version__ = "0.8.0"
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
default_app_config = "inventory.apps.InventoryConfig"