release as v0.8.3

pull/37/head v0.8.3
JensDiemer 2020-12-29 14:20:37 +01:00
rodzic 0911e78f37
commit edac8b3e2e
5 zmienionych plików z 20 dodań i 6 usunięć

Wyświetl plik

@ -189,8 +189,12 @@ Files are separated into: "/src/" and "/development/"
== history
* [[https://github.com/jedie/PyInventory/compare/v0.8.2...master|compare v0.8.2...master]] **dev**
* [[https://github.com/jedie/PyInventory/compare/v0.8.3...master|compare v0.8.3...master]] **dev**
** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.8.2...v0.8.3|v0.8.3 - 29.12.2020]]
** update requirements
** remove colorama from direct dependencies
** Small project setup changes
* [[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]]

Wyświetl plik

@ -168,6 +168,8 @@ You can run the deployment docker containers with current source code with:
Just hit Cntl-C to stop the containers
The web page is available via: ``https://localhost/``
-----------
Screenshots
-----------
@ -254,10 +256,18 @@ Files are separated into: "/src/" and "/development/"
history
-------
* `compare v0.8.2...master <https://github.com/jedie/PyInventory/compare/v0.8.2...master>`_ **dev**
* `compare v0.8.3...master <https://github.com/jedie/PyInventory/compare/v0.8.3...master>`_ **dev**
* tbc
* `v0.8.3 - 29.12.2020 <https://github.com/jedie/PyInventory/compare/v0.8.2...v0.8.3>`_
* update requirements
* remove colorama from direct dependencies
* Small project setup changes
* `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
@ -395,4 +405,4 @@ donation
------------
``Note: this file is generated from README.creole 2020-12-20 18:52:10 with "python-creole"``
``Note: this file is generated from README.creole 2020-12-29 14:20:27 with "python-creole"``

Wyświetl plik

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

Wyświetl plik

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