diff --git a/README.creole b/README.creole index ac9ca48..820b560 100644 --- a/README.creole +++ b/README.creole @@ -160,7 +160,7 @@ e.g.: == Backwards-incompatible changes -=== v0.5.0rc1 +=== v0.5.0 Git branches "master" and "deployment" was merged into one. Files are separated into: "/src/" and "/development/" @@ -168,9 +168,9 @@ Files are separated into: "/src/" and "/development/" == history -* [[https://github.com/jedie/PyInventory/compare/v0.5.0rc1...master|compare v0.5.0rc1...master]] **dev** +* [[https://github.com/jedie/PyInventory/compare/v0.5.0...master|compare v0.5.0...master]] **dev** ** tbc -* [[https://github.com/jedie/PyInventory/compare/v0.4.2...v0.5.0rc1|v0.5.0rc1 - 14.11.2020]] +* [[https://github.com/jedie/PyInventory/compare/v0.4.2...v0.5.0|v0.5.0 - 14.11.2020]] * Merge separate git branches into one: "/src/" and "/development/" [[https://github.com/jedie/PyInventory/issues/19|#19]] * [[https://github.com/jedie/PyInventory/compare/v0.4.1...v0.4.2|v0.4.2 - 13.11.2020]] ** Serve static files by Caddy diff --git a/README.rst b/README.rst index e6b15ec..5295642 100644 --- a/README.rst +++ b/README.rst @@ -220,8 +220,8 @@ e.g.: Backwards-incompatible changes ------------------------------ -v0.5.0rc1 -========= +v0.5.0 +====== Git branches "master" and "deployment" was merged into one. Files are separated into: "/src/" and "/development/" @@ -230,11 +230,11 @@ Files are separated into: "/src/" and "/development/" history ------- -* `compare v0.5.0rc1...master `_ **dev** +* `compare v0.5.0...master `_ **dev** * tbc -* `v0.5.0rc1 - 14.11.2020 `_ +* `v0.5.0 - 14.11.2020 `_ * Merge separate git branches into one: "/src/" and "/development/" `#19 `_ @@ -335,4 +335,4 @@ donation ------------ -``Note: this file is generated from README.creole 2020-11-14 11:53:29 with "python-creole"`` \ No newline at end of file +``Note: this file is generated from README.creole 2020-11-14 12:15:59 with "python-creole"`` \ No newline at end of file diff --git a/deployment/Dockerfile b/deployment/Dockerfile index 0edda1d..94cb9c0 100644 --- a/deployment/Dockerfile +++ b/deployment/Dockerfile @@ -13,6 +13,6 @@ RUN apt-get update \ WORKDIR /inventory -RUN pip install "pyinventory>=0.4.2" +RUN pip install "pyinventory>=0.5.0" diff --git a/deployment/inventory/entrypoint.sh b/deployment/inventory/entrypoint.sh index 3505db4..50904b0 100755 --- a/deployment/inventory/entrypoint.sh +++ b/deployment/inventory/entrypoint.sh @@ -26,7 +26,7 @@ if [ -d "/dist/" ] ; then else ( set -x - pip3 install -U "pyinventory>=0.5.0rc1" + pip3 install -U "pyinventory>=0.5.0" ) fi ( diff --git a/poetry.lock b/poetry.lock index e7de623..da3673b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -552,7 +552,7 @@ python-versions = ">=3.6,<4.0" [package.extras] pipfile_deprecated_finder = ["pipreqs", "requirementslib"] requirements_deprecated_finder = ["pipreqs", "pip-api"] -colors = ["colorama (>=0.4.3,<0.5.0rc1)"] +colors = ["colorama (>=0.4.3,<0.5.0)"] [[package]] name = "jdcal" @@ -564,7 +564,7 @@ python-versions = "*" [[package]] name = "jeepney" -version = "0.5.0rc1" +version = "0.5.0" description = "Low-level, pure Python DBus protocol wrapper." category = "dev" optional = false @@ -1521,8 +1521,8 @@ jdcal = [ {file = "jdcal-1.4.1.tar.gz", hash = "sha256:472872e096eb8df219c23f2689fc336668bdb43d194094b5cc1707e1640acfc8"}, ] jeepney = [ - {file = "jeepney-0.5.0rc1-py3-none-any.whl", hash = "sha256:e0e057fe2069a54257de32eb26cf14aac5fa90f5836f49926009a5022fb1e31a"}, - {file = "jeepney-0.5.0rc1.tar.gz", hash = "sha256:2531d17ccfb3485d4eaee03c1a19a75f28b3ac0fbb5a1b683b77b820e5b0f509"}, + {file = "jeepney-0.5.0-py3-none-any.whl", hash = "sha256:e0e057fe2069a54257de32eb26cf14aac5fa90f5836f49926009a5022fb1e31a"}, + {file = "jeepney-0.5.0.tar.gz", hash = "sha256:2531d17ccfb3485d4eaee03c1a19a75f28b3ac0fbb5a1b683b77b820e5b0f509"}, ] jsonschema = [ {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, diff --git a/pyproject.toml b/pyproject.toml index 9731953..2bfdf7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyInventory" -version = "0.5.0rc1" +version = "0.5.0" description = "Web based management to catalog things including state and location etc. using Python/Django." authors = ["JensDiemer "] packages = [ diff --git a/src/inventory/__init__.py b/src/inventory/__init__.py index ea03687..71b3f58 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.5.0rc1" +__version__ = "0.5.0" # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref default_app_config = "inventory.apps.InventoryConfig"