pull/51/head v0.9.1
JensDiemer 2021-04-28 19:38:50 +02:00
rodzic 2882d29fc7
commit c358a9f6da
5 zmienionych plików z 18 dodań i 15 usunięć

Wyświetl plik

@ -23,7 +23,7 @@ Plan:
* You should be able to add the following to the items:
** Storage location
** State
** Pictures
** Pictures and Files
** URLs
** receiving and delivering (when, from whom, at what price, etc.)
** Information: Publicly visible yes/no
@ -154,10 +154,11 @@ Files are separated into: "/src/" and "/development/"
== history
* [[https://github.com/jedie/PyInventory/compare/v0.9.0...master|compare v0.9.0...master]] **dev**
* NEW: It's not possible to upload file(s) to item.
* Add a auto login if Django dev. server is used.
* [[https://github.com/jedie/PyInventory/compare/v0.9.1...master|compare v0.9.1...master]] **dev**
** 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.
* [[https://github.com/jedie/PyInventory/compare/v0.8.4...v0.9.0|v0.9.0 - 11.04.2021]]
** Use https://github.com/jedie/dev-shell for development
* [[https://github.com/jedie/PyInventory/compare/v0.8.3...v0.8.4|v0.8.4 - 19.01.2021]]

Wyświetl plik

@ -43,7 +43,7 @@ Plan:
* State
* Pictures
* Pictures and Files
* URLs
@ -216,14 +216,16 @@ Files are separated into: "/src/" and "/development/"
history
-------
* `compare v0.9.0...master <https://github.com/jedie/PyInventory/compare/v0.9.0...master>`_ **dev**
* NEW: It's not possible to upload file(s) to item.
* Add a auto login if Django dev. server is used.
* `compare v0.9.1...master <https://github.com/jedie/PyInventory/compare/v0.9.1...master>`_ **dev**
* 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.
* Add a auto login if Django dev. server is used.
* `v0.9.0 - 11.04.2021 <https://github.com/jedie/PyInventory/compare/v0.8.4...v0.9.0>`_
* Use `https://github.com/jedie/dev-shell <https://github.com/jedie/dev-shell>`_ for development
@ -379,4 +381,4 @@ donation
------------
``Note: this file is generated from README.creole 2021-04-28 19:03:46 with "python-creole"``
``Note: this file is generated from README.creole 2021-04-28 19:37:29 with "python-creole"``

Wyświetl plik

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

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry]
name = "PyInventory"
version = "0.9.0"
version = "0.9.1"
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

@ -1,10 +1,10 @@
"""
created 14.20.2020 by Jens Diemer <opensource@jensdiemer.de>
:copyleft: 2020 by the PyInventory team, see AUTHORS for more details.
:copyleft: 2020-2021 by the PyInventory team, see AUTHORS for more details.
:license: GNU GPL v3 or above, see LICENSE for more details.
"""
__version__ = "0.9.0"
__version__ = "0.9.1"
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
default_app_config = "inventory.apps.InventoryConfig"