kopia lustrzana https://github.com/jedie/PyInventory
Update README and prepare v0.2.0 release
rodzic
e2bcc7ace6
commit
e4d89df388
|
@ -136,7 +136,7 @@ Notes:
|
||||||
|
|
||||||
== Screenshots
|
== Screenshots
|
||||||
|
|
||||||
{{https://raw.githubusercontent.com/jedie/jedie.github.io/master/screenshots/PyInventory/PyInventory v0.1.0 screenshot 1.png|PyInventory v0.1.0 screenshot 1.png}}
|
{{https://raw.githubusercontent.com/jedie/jedie.github.io/master/screenshots/PyInventory/PyInventory v0.2.0 screenshot 1.png|PyInventory v0.2.0 screenshot 1.png}}
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
@ -178,8 +178,14 @@ Nothing, yet ;)
|
||||||
|
|
||||||
== history
|
== history
|
||||||
|
|
||||||
* [[https://github.com/jedie/PyInventory/compare/v0.1.0...master|compare v0.1.0...master]] **dev**
|
* [[https://github.com/jedie/PyInventory/compare/v0.2.0...master|compare v0.2.0...master]] **dev**
|
||||||
** tbc
|
** tbc
|
||||||
|
* [[https://github.com/jedie/PyInventory/compare/v0.1.0...v0.2.0|v0.2.0 - 24.10.2020]]
|
||||||
|
** Simplify item change list by nested item
|
||||||
|
** Activate Django-Import/Export
|
||||||
|
** Implement multi user usage
|
||||||
|
** Add Django-dbbackup
|
||||||
|
** Add docker-compose usage
|
||||||
* [[https://github.com/jedie/PyInventory/compare/v0.0.1...v0.1.0|v0.1.0 - 17.10.2020]]
|
* [[https://github.com/jedie/PyInventory/compare/v0.0.1...v0.1.0|v0.1.0 - 17.10.2020]]
|
||||||
** Enhance models, admin and finish project setup
|
** Enhance models, admin and finish project setup
|
||||||
* v0.0.1 - 14.10.2020
|
* v0.0.1 - 14.10.2020
|
||||||
|
|
20
README.rst
20
README.rst
|
@ -175,9 +175,9 @@ Notes:
|
||||||
Screenshots
|
Screenshots
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|PyInventory v0.1.0 screenshot 1.png|
|
|PyInventory v0.2.0 screenshot 1.png|
|
||||||
|
|
||||||
.. |PyInventory v0.1.0 screenshot 1.png| image:: https://raw.githubusercontent.com/jedie/jedie.github.io/master/screenshots/PyInventory/PyInventory v0.1.0 screenshot 1.png
|
.. |PyInventory v0.2.0 screenshot 1.png| image:: https://raw.githubusercontent.com/jedie/jedie.github.io/master/screenshots/PyInventory/PyInventory v0.2.0 screenshot 1.png
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
@ -231,10 +231,22 @@ Nothing, yet ;)
|
||||||
history
|
history
|
||||||
-------
|
-------
|
||||||
|
|
||||||
* `compare v0.1.0...master <https://github.com/jedie/PyInventory/compare/v0.1.0...master>`_ **dev**
|
* `compare v0.2.0...master <https://github.com/jedie/PyInventory/compare/v0.2.0...master>`_ **dev**
|
||||||
|
|
||||||
* tbc
|
* tbc
|
||||||
|
|
||||||
|
* `v0.2.0 - 24.10.2020 <https://github.com/jedie/PyInventory/compare/v0.1.0...v0.2.0>`_
|
||||||
|
|
||||||
|
* Simplify item change list by nested item
|
||||||
|
|
||||||
|
* Activate Django-Import/Export
|
||||||
|
|
||||||
|
* Implement multi user usage
|
||||||
|
|
||||||
|
* Add Django-dbbackup
|
||||||
|
|
||||||
|
* Add docker-compose usage
|
||||||
|
|
||||||
* `v0.1.0 - 17.10.2020 <https://github.com/jedie/PyInventory/compare/v0.0.1...v0.1.0>`_
|
* `v0.1.0 - 17.10.2020 <https://github.com/jedie/PyInventory/compare/v0.0.1...v0.1.0>`_
|
||||||
|
|
||||||
* Enhance models, admin and finish project setup
|
* Enhance models, admin and finish project setup
|
||||||
|
@ -276,4 +288,4 @@ donation
|
||||||
|
|
||||||
------------
|
------------
|
||||||
|
|
||||||
``Note: this file is generated from README.creole 2020-10-24 17:15:43 with "python-creole"``
|
``Note: this file is generated from README.creole 2020-10-24 19:34:25 with "python-creole"``
|
|
@ -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.1.0"
|
__version__ = "0.2.0"
|
||||||
|
|
||||||
# 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"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "PyInventory"
|
name = "PyInventory"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
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 = [
|
||||||
|
|
Ładowanie…
Reference in New Issue