From c358a9f6daf6de6df026aecafaed90ecbc458102 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Wed, 28 Apr 2021 19:38:50 +0200 Subject: [PATCH] Release v0.9.1 --- README.creole | 9 +++++---- README.rst | 16 +++++++++------- deployment/project.env | 2 +- pyproject.toml | 2 +- src/inventory/__init__.py | 4 ++-- 5 files changed, 18 insertions(+), 15 deletions(-) diff --git a/README.creole b/README.creole index 576e306..1f7ba77 100644 --- a/README.creole +++ b/README.creole @@ -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]] diff --git a/README.rst b/README.rst index c6d7534..c43ebc0 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ **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 `_ **dev** * tbc +* `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. + * `v0.9.0 - 11.04.2021 `_ * Use `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"`` \ No newline at end of file +``Note: this file is generated from README.creole 2021-04-28 19:37:29 with "python-creole"`` \ No newline at end of file diff --git a/deployment/project.env b/deployment/project.env index e758959..dc6cf55 100644 --- a/deployment/project.env +++ b/deployment/project.env @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 68d57dd..50feaba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] homepage = "https://github.com/jedie/PyInventory" diff --git a/src/inventory/__init__.py b/src/inventory/__init__.py index 933285a..c6a592b 100644 --- a/src/inventory/__init__.py +++ b/src/inventory/__init__.py @@ -1,10 +1,10 @@ """ created 14.20.2020 by Jens Diemer - :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"