pull/37/head v0.8.2
JensDiemer 2020-12-20 18:53:23 +01:00
rodzic 4405d27be7
commit 3d166c9083
5 zmienionych plików z 12 dodań i 6 usunięć

Wyświetl plik

@ -187,8 +187,10 @@ Files are separated into: "/src/" and "/development/"
== history
* [[https://github.com/jedie/PyInventory/compare/v0.8.1...master|compare v0.8.1...master]] **dev**
* [[https://github.com/jedie/PyInventory/compare/v0.8.2...master|compare v0.8.2...master]] **dev**
** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.8.1...v0.8.2|v0.8.2 - 20.12.2020]]
** Bugfix [[https://github.com/jedie/PyInventory/issues/33|#33]]: Upload images to new created Items
* [[https://github.com/jedie/PyInventory/compare/v0.8.0...v0.8.1|v0.8.1 - 09.12.2020]]
** Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
** Fix admin redirect by using the url pattern name

Wyświetl plik

@ -254,10 +254,14 @@ Files are separated into: "/src/" and "/development/"
history
-------
* `compare v0.8.1...master <https://github.com/jedie/PyInventory/compare/v0.8.1...master>`_ **dev**
* `compare v0.8.2...master <https://github.com/jedie/PyInventory/compare/v0.8.2...master>`_ **dev**
* tbc
* `v0.8.2 - 20.12.2020 <https://github.com/jedie/PyInventory/compare/v0.8.1...v0.8.2>`_
* Bugfix `#33 <https://github.com/jedie/PyInventory/issues/33>`_: Upload images to new created Items
* `v0.8.1 - 09.12.2020 <https://github.com/jedie/PyInventory/compare/v0.8.0...v0.8.1>`_
* Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
@ -391,4 +395,4 @@ donation
------------
``Note: this file is generated from README.creole 2020-12-09 20:14:54 with "python-creole"``
``Note: this file is generated from README.creole 2020-12-20 18:52:10 with "python-creole"``

Wyświetl plik

@ -1,3 +1,3 @@
export PROJECT_NAME=pyinventory
export PROJECT_PACKAGE_NAME=pyinventory
export PROJECT_VERSION=0.8.1
export PROJECT_VERSION=0.8.2

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry]
name = "PyInventory"
version = "0.8.1"
version = "0.8.2"
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.1"
__version__ = "0.8.2"
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
default_app_config = "inventory.apps.InventoryConfig"