update README and release as 0.8.1rc2

pull/31/head v0.8.1rc2
JensDiemer 2020-12-09 11:52:41 +01:00
rodzic 8cc1f3cfb8
commit 27d4c98018
5 zmienionych plików z 17 dodań i 8 usunięć

Wyświetl plik

@ -47,10 +47,11 @@ There are two main directories:
== install == install
There exists two kind of installation/usage: There exists these kind of installation/usage:
* local development installation using poetry * local development installation using poetry
* production use with docker-compose * production use with docker-compose on a root server
* Install as [[https://yunohost.org|YunoHost]] App via [[https://github.com/jedie/pyinventory_ynh|yinventory_ynh]]
This README contains only the information about local development installation. This README contains only the information about local development installation.
@ -187,6 +188,8 @@ Files are separated into: "/src/" and "/development/"
== history == history
* [[https://github.com/jedie/PyInventory/compare/v0.8.0...master|compare v0.8.0...master]] **dev** * [[https://github.com/jedie/PyInventory/compare/v0.8.0...master|compare v0.8.0...master]] **dev**
** Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
** Fix admin redirect by using the url pattern name
** tbc ** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0|v0.8.0 - 06.12.2020]] * [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0|v0.8.0 - 06.12.2020]]
** Outsource the "MEDIA file serve" part into [[https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme|django.tools.serve_media_app]] ** Outsource the "MEDIA file serve" part into [[https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme|django.tools.serve_media_app]]

Wyświetl plik

@ -90,11 +90,13 @@ There are two main directories:
install install
------- -------
There exists two kind of installation/usage: There exists these kind of installation/usage:
* local development installation using poetry * local development installation using poetry
* production use with docker-compose * production use with docker-compose on a root server
* Install as `YunoHost <https://yunohost.org>`_ App via `yinventory_ynh <https://github.com/jedie/pyinventory_ynh>`_
This README contains only the information about local development installation. This README contains only the information about local development installation.
@ -254,6 +256,10 @@ history
* `compare v0.8.0...master <https://github.com/jedie/PyInventory/compare/v0.8.0...master>`_ **dev** * `compare v0.8.0...master <https://github.com/jedie/PyInventory/compare/v0.8.0...master>`_ **dev**
* Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
* Fix admin redirect by using the url pattern name
* tbc * tbc
* `v0.8.0 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0>`_ * `v0.8.0 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0>`_
@ -379,4 +385,4 @@ donation
------------ ------------
``Note: this file is generated from README.creole 2020-12-06 19:33:09 with "python-creole"`` ``Note: this file is generated from README.creole 2020-12-09 11:11:42 with "python-creole"``

Wyświetl plik

@ -1,3 +1,3 @@
export PROJECT_NAME=pyinventory export PROJECT_NAME=pyinventory
export PROJECT_PACKAGE_NAME=pyinventory export PROJECT_PACKAGE_NAME=pyinventory
export PROJECT_VERSION=0.8.1rc1 export PROJECT_VERSION=0.8.1rc2

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "PyInventory" name = "PyInventory"
version = "0.8.1rc1" version = "0.8.1rc2"
description = "Web based management to catalog things including state and location etc. using Python/Django." description = "Web based management to catalog things including state and location etc. using Python/Django."
authors = ["JensDiemer <git@jensdiemer.de>"] authors = ["JensDiemer <git@jensdiemer.de>"]
packages = [ packages = [

Wyświetl plik

@ -4,7 +4,7 @@
:license: GNU GPL v3 or above, see LICENSE for more details. :license: GNU GPL v3 or above, see LICENSE for more details.
""" """
__version__ = "0.8.1rc1" __version__ = "0.8.1rc2"
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref # https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
default_app_config = "inventory.apps.InventoryConfig" default_app_config = "inventory.apps.InventoryConfig"