From edbd3a56eb0b7cd835bb09a3cc0fbdad741215c7 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Wed, 15 Sep 2021 21:29:27 +0200 Subject: [PATCH] Release as v0.9.4 --- README.creole | 4 +++- README.rst | 8 ++++++-- deployment/project.env | 2 +- src/inventory/__init__.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.creole b/README.creole index 7e5b356..f4b8dd9 100644 --- a/README.creole +++ b/README.creole @@ -156,8 +156,10 @@ Files are separated into: "/src/" and "/development/" == history -* [[https://github.com/jedie/PyInventory/compare/v0.9.3...master|compare v0.9.3...master]] **dev** +* [[https://github.com/jedie/PyInventory/compare/v0.9.4...master|compare v0.9.4...master]] **dev** ** tbc +* [[https://github.com/jedie/PyInventory/compare/v0.9.3...v0.9.4|v0.9.4 - 15.09.2021]] +** Pin {{{psycopg < 2.9}}} because of https://github.com/psycopg/psycopg2/issues/1293 * [[https://github.com/jedie/PyInventory/compare/v0.9.2...v0.9.3|v0.9.3 - 15.09.2021]] ** Optimize "items" changelist queries ** Update requirements diff --git a/README.rst b/README.rst index defe28d..30bf6a2 100644 --- a/README.rst +++ b/README.rst @@ -218,10 +218,14 @@ Files are separated into: "/src/" and "/development/" history ------- -* `compare v0.9.3...master `_ **dev** +* `compare v0.9.4...master `_ **dev** * tbc +* `v0.9.4 - 15.09.2021 `_ + + * Pin ``psycopg < 2.9`` because of `https://github.com/psycopg/psycopg2/issues/1293 `_ + * `v0.9.3 - 15.09.2021 `_ * Optimize "items" changelist queries @@ -397,4 +401,4 @@ donation ------------ -``Note: this file is generated from README.creole 2021-09-15 21:11:45 with "python-creole"`` \ No newline at end of file +``Note: this file is generated from README.creole 2021-09-15 21:28:39 with "python-creole"`` \ No newline at end of file diff --git a/deployment/project.env b/deployment/project.env index fa603a9..ce6fc50 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.3 +export PROJECT_VERSION=0.9.4 diff --git a/src/inventory/__init__.py b/src/inventory/__init__.py index afa6b71..37d067f 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.9.3" +__version__ = "0.9.4" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"