Merge pull request #54 from jedie/release

Release as v0.9.2
pull/55/head v0.9.2
Jens Diemer 2021-05-11 17:55:37 +02:00 zatwierdzone przez GitHub
commit fa69270f31
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
5 zmienionych plików z 12 dodań i 9 usunięć

Wyświetl plik

@ -154,10 +154,11 @@ Files are separated into: "/src/" and "/development/"
== history
* [[https://github.com/jedie/PyInventory/compare/v0.9.1...master|compare v0.9.1...master]] **dev**
* [[https://github.com/jedie/PyInventory/compare/v0.9.2...master|compare v0.9.2...master]] **dev**
** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.9.1...v0.9.2|v0.9.2 - 11.05.2021]]
** Update requirements
** [[https://github.com/jedie/PyInventory/issues/50|Fix error handling if item link is broken]]
** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.9.0...v0.9.1|v0.9.1 - 28.04.2021]]
* NEW: Besides images, it's now possible to add file(s) to items, too.
* Add a auto login if Django dev. server is used.

Wyświetl plik

@ -216,14 +216,16 @@ Files are separated into: "/src/" and "/development/"
history
-------
* `compare v0.9.1...master <https://github.com/jedie/PyInventory/compare/v0.9.1...master>`_ **dev**
* `compare v0.9.2...master <https://github.com/jedie/PyInventory/compare/v0.9.2...master>`_ **dev**
* tbc
* `v0.9.2 - 11.05.2021 <https://github.com/jedie/PyInventory/compare/v0.9.1...v0.9.2>`_
* Update requirements
* `Fix error handling if item link is broken <https://github.com/jedie/PyInventory/issues/50>`_
* tbc
* `v0.9.1 - 28.04.2021 <https://github.com/jedie/PyInventory/compare/v0.9.0...v0.9.1>`_
* NEW: Besides images, it's now possible to add file(s) to items, too.
@ -385,4 +387,4 @@ donation
------------
``Note: this file is generated from README.creole 2021-05-11 16:26:20 with "python-creole"``
``Note: this file is generated from README.creole 2021-05-11 17:00:54 with "python-creole"``

Wyświetl plik

@ -1,3 +1,3 @@
export PROJECT_NAME=pyinventory
export PROJECT_PACKAGE_NAME=pyinventory
export PROJECT_VERSION=0.9.1
export PROJECT_VERSION=0.9.2

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry]
name = "PyInventory"
version = "0.9.1"
version = "0.9.2"
description = "Web based management to catalog things including state and location etc. using Python/Django."
authors = ["JensDiemer <git@jensdiemer.de>"]
homepage = "https://github.com/jedie/PyInventory"

Wyświetl plik

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