From 8b2b44724f943ad73873dc827d724efeb438a19f Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sun, 11 Apr 2021 15:58:19 +0200 Subject: [PATCH] relase as v0.9.0 --- README.creole | 4 +++- README.rst | 38 +++++++++++++++++++++----------------- pyproject.toml | 2 +- src/inventory/__init__.py | 2 +- 4 files changed, 26 insertions(+), 20 deletions(-) diff --git a/README.creole b/README.creole index ac7d2a1..567af27 100644 --- a/README.creole +++ b/README.creole @@ -154,8 +154,10 @@ Files are separated into: "/src/" and "/development/" == history -* [[https://github.com/jedie/PyInventory/compare/v0.8.4...master|compare v0.8.4...master]] **dev** +* [[https://github.com/jedie/PyInventory/compare/v0.9.0...master|compare v0.9.0...master]] **dev** ** tbc +* [[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]] ** Search items in change list by "kind" and "tags", too ** update requirements diff --git a/README.rst b/README.rst index 6ad603b..9e97702 100644 --- a/README.rst +++ b/README.rst @@ -216,17 +216,21 @@ Files are separated into: "/src/" and "/development/" history ------- -* `compare v0.8.4...master `_ **dev** +* `compare v0.9.0...master `_ **dev** * tbc -* `v0.8.4 - 19.01.2021 `_ +* `v0.9.0 - 11.04.2021 `_ + + * Use `https://github.com/jedie/dev-shell `_ for development + +* `v0.8.4 - 19.01.2021 `_ * Search items in change list by "kind" and "tags", too * update requirements -* `v0.8.3 - 29.12.2020 `_ +* `v0.8.3 - 29.12.2020 `_ * update requirements @@ -234,11 +238,11 @@ history * Small project setup changes -* `v0.8.2 - 20.12.2020 `_ +* `v0.8.2 - 20.12.2020 `_ * Bugfix `#33 `_: Upload images to new created Items -* `v0.8.1 - 09.12.2020 `_ +* `v0.8.1 - 09.12.2020 `_ * Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate @@ -248,11 +252,11 @@ history * update requirements -* `v0.8.0 - 06.12.2020 `_ +* `v0.8.0 - 06.12.2020 `_ * Outsource the "MEDIA file serve" part into `django.tools.serve_media_app `_ -* `v0.7.0 - 23.11.2020 `_ +* `v0.7.0 - 23.11.2020 `_ * Change deployment setup: @@ -266,15 +270,15 @@ history * pull all docker images before build -* `v0.6.0 - 15.11.2020 `_ +* `v0.6.0 - 15.11.2020 `_ * User can store images to every item: The image can only be accessed by the same user. -* `v0.5.0 - 14.11.2020 `_ +* `v0.5.0 - 14.11.2020 `_ * Merge separate git branches into one: "/src/" and "/development/" `#19 `_ -* `v0.4.2 - 13.11.2020 `_ +* `v0.4.2 - 13.11.2020 `_ * Serve static files by Caddy @@ -282,11 +286,11 @@ history * reduce CKEditor plugins -* `v0.4.1 - 2.11.2020 `_ +* `v0.4.1 - 2.11.2020 `_ * Small bugfixes -* `v0.4.0 - 1.11.2020 `_ +* `v0.4.0 - 1.11.2020 `_ * Move docker stuff and production use information into separate git branch @@ -294,11 +298,11 @@ history * Add django-processinfo: collect information about the running server processes -* `v0.3.2 - 26.10.2020 `_ +* `v0.3.2 - 26.10.2020 `_ * Bugfix missing translations -* `v0.3.0 - 26.10.2020 `_ +* `v0.3.0 - 26.10.2020 `_ * setup production usage: @@ -316,7 +320,7 @@ history * Bugfix for using manage commands ``dumpdata`` and ``loaddata`` -* `v0.2.0 - 24.10.2020 `_ +* `v0.2.0 - 24.10.2020 `_ * Simplify item change list by nested item @@ -328,7 +332,7 @@ history * Add docker-compose usage -* `v0.1.0 - 17.10.2020 `_ +* `v0.1.0 - 17.10.2020 `_ * Enhance models, admin and finish project setup @@ -371,4 +375,4 @@ donation ------------ -``Note: this file is generated from README.creole 2021-04-05 20:00:43 with "python-creole"`` +``Note: this file is generated from README.creole 2021-04-11 15:57:00 with "python-creole"`` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4d65321..5dfd21d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.8.4" +version = "0.9.0" 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 744242f..933285a 100644 --- a/src/inventory/__init__.py +++ b/src/inventory/__init__.py @@ -4,7 +4,7 @@ :license: GNU GPL v3 or above, see LICENSE for more details. """ -__version__ = "0.8.4" +__version__ = "0.9.0" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"