kopia lustrzana https://github.com/jedie/PyInventory
commit
fa69270f31
|
@ -154,10 +154,11 @@ Files are separated into: "/src/" and "/development/"
|
||||||
|
|
||||||
== history
|
== 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
|
** Update requirements
|
||||||
** [[https://github.com/jedie/PyInventory/issues/50|Fix error handling if item link is broken]]
|
** [[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]]
|
* [[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.
|
* NEW: Besides images, it's now possible to add file(s) to items, too.
|
||||||
* Add a auto login if Django dev. server is used.
|
* Add a auto login if Django dev. server is used.
|
||||||
|
|
10
README.rst
10
README.rst
|
@ -216,14 +216,16 @@ Files are separated into: "/src/" and "/development/"
|
||||||
history
|
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
|
* Update requirements
|
||||||
|
|
||||||
* `Fix error handling if item link is broken <https://github.com/jedie/PyInventory/issues/50>`_
|
* `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>`_
|
* `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.
|
* 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"``
|
|
@ -1,3 +1,3 @@
|
||||||
export PROJECT_NAME=pyinventory
|
export PROJECT_NAME=pyinventory
|
||||||
export PROJECT_PACKAGE_NAME=pyinventory
|
export PROJECT_PACKAGE_NAME=pyinventory
|
||||||
export PROJECT_VERSION=0.9.1
|
export PROJECT_VERSION=0.9.2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "PyInventory"
|
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."
|
description = "Web based management to catalog things including state and location etc. using Python/Django."
|
||||||
authors = ["JensDiemer <git@jensdiemer.de>"]
|
authors = ["JensDiemer <git@jensdiemer.de>"]
|
||||||
homepage = "https://github.com/jedie/PyInventory"
|
homepage = "https://github.com/jedie/PyInventory"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
:license: GNU GPL v3 or above, see LICENSE for more details.
|
: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
|
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
|
||||||
default_app_config = "inventory.apps.InventoryConfig"
|
default_app_config = "inventory.apps.InventoryConfig"
|
||||||
|
|
Ładowanie…
Reference in New Issue