Release as v0.5.0

pull/21/head v0.5.0
JensDiemer 2020-11-14 12:17:38 +01:00
rodzic 0a871cc891
commit 370aa46326
7 zmienionych plików z 16 dodań i 16 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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 <https://github.com/jedie/PyInventory/compare/v0.5.0rc1...master>`_ **dev**
* `compare v0.5.0...master <https://github.com/jedie/PyInventory/compare/v0.5.0...master>`_ **dev**
* tbc
* `v0.5.0rc1 - 14.11.2020 <https://github.com/jedie/PyInventory/compare/v0.4.2...v0.5.0rc1>`_
* `v0.5.0 - 14.11.2020 <https://github.com/jedie/PyInventory/compare/v0.4.2...v0.5.0>`_
* Merge separate git branches into one: "/src/" and "/development/" `#19 <https://github.com/jedie/PyInventory/issues/19>`_
@ -335,4 +335,4 @@ donation
------------
``Note: this file is generated from README.creole 2020-11-14 11:53:29 with "python-creole"``
``Note: this file is generated from README.creole 2020-11-14 12:15:59 with "python-creole"``

Wyświetl plik

@ -13,6 +13,6 @@ RUN apt-get update \
WORKDIR /inventory
RUN pip install "pyinventory>=0.4.2"
RUN pip install "pyinventory>=0.5.0"

Wyświetl plik

@ -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
(

8
poetry.lock wygenerowano
Wyświetl plik

@ -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"},

Wyświetl plik

@ -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 <git@jensdiemer.de>"]
packages = [

Wyświetl plik

@ -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"