release v0.8.0rc1

pull/31/head v0.8.0rc1
JensDiemer 2020-12-06 19:20:36 +01:00
rodzic c970f2ed12
commit 7159f00e5b
5 zmienionych plików z 10 dodań i 7 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -254,10 +254,12 @@ history
* `compare v0.7.0...master <https://github.com/jedie/PyInventory/compare/v0.7.0...master>`_ **dev**
* 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>`_
* tbc
* `v0.8.0rc1 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0rc1>`_
* 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>`_
* `v0.7.0 - 23.11.2020 <https://github.com/jedie/PyInventory/compare/v0.6.0...v0.7.0>`_
* 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"``
``Note: this file is generated from README.creole 2020-12-06 19:20:04 with "python-creole"``

Wyświetl plik

@ -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

Wyświetl plik

@ -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 <git@jensdiemer.de>"]
packages = [

Wyświetl plik

@ -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"