Release as v0.15.0

pull/114/head
JensDiemer 2022-08-19 09:20:28 +02:00
rodzic 8c4d3c8d83
commit 0fe19c7ed8
6 zmienionych plików z 27 dodań i 9 usunięć

Wyświetl plik

@ -174,8 +174,14 @@ Files are separated into: "/src/" and "/development/"
== history == history
* [[https://github.com/jedie/PyInventory/compare/v0.14.0...main|compare v0.14.0...main]] **dev** * [[https://github.com/jedie/PyInventory/compare/v0.15.0...main|compare v0.15.0...main]] **dev**
** tbc ** tbc
* [[https://github.com/jedie/PyInventory/compare/v0.14.0...v0.15.0|v0.15.0 - 19.08.2022]]
** Speedup item change list by prefetch "location"
** Better changelists for super users
** Add {{{./devsetup.py manage seed_data}}} command to fill the database for development
** Update requirements
** Update project setup
* [[https://github.com/jedie/PyInventory/compare/v0.13.1...v0.14.0|v0.14.0 - 24.07.2022]] * [[https://github.com/jedie/PyInventory/compare/v0.13.1...v0.14.0|v0.14.0 - 24.07.2022]]
** [[https://github.com/jedie/PyInventory/issues/102|Fix #102]] by remove limitation of item parents. ** [[https://github.com/jedie/PyInventory/issues/102|Fix #102]] by remove limitation of item parents.
** Remove "Group Items" functionality ** Remove "Group Items" functionality

Wyświetl plik

@ -241,10 +241,22 @@ Files are separated into: "/src/" and "/development/"
history history
------- -------
* `compare v0.14.0...main <https://github.com/jedie/PyInventory/compare/v0.14.0...main>`_ **dev** * `compare v0.15.0...main <https://github.com/jedie/PyInventory/compare/v0.15.0...main>`_ **dev**
* tbc * tbc
* `v0.15.0 - 19.08.2022 <https://github.com/jedie/PyInventory/compare/v0.14.0...v0.15.0>`_
* Speedup item change list by prefetch "location"
* Better changelists for super users
* Add ``./devsetup.py manage seed_data`` command to fill the database for development
* Update requirements
* Update project setup
* `v0.14.0 - 24.07.2022 <https://github.com/jedie/PyInventory/compare/v0.13.1...v0.14.0>`_ * `v0.14.0 - 24.07.2022 <https://github.com/jedie/PyInventory/compare/v0.13.1...v0.14.0>`_
* `Fix #102 <https://github.com/jedie/PyInventory/issues/102>`_ by remove limitation of item parents. * `Fix #102 <https://github.com/jedie/PyInventory/issues/102>`_ by remove limitation of item parents.
@ -472,4 +484,4 @@ donation
------------ ------------
``Note: this file is generated from README.creole 2022-07-24 20:16:16 with "python-creole"`` ``Note: this file is generated from README.creole 2022-08-19 09:18:39 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.14.0 export PROJECT_VERSION=0.15.0

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "PyInventory" name = "PyInventory"
version = "0.14.0" version = "0.15.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>"]
homepage = "https://github.com/jedie/PyInventory" homepage = "https://github.com/jedie/PyInventory"

Wyświetl plik

@ -1,7 +1,7 @@
""" """
created 14.20.2020 by Jens Diemer <opensource@jensdiemer.de> created 14.20.2020 by Jens Diemer <opensource@jensdiemer.de>
:copyleft: 2020-2021 by the PyInventory team, see AUTHORS for more details. :copyleft: 2020-2022 by the PyInventory team, see AUTHORS for more details.
:license: GNU GPL v3 or above, see LICENSE for more details. :license: GNU GPL v3 or above, see LICENSE for more details.
""" """
__version__ = "0.14.0" __version__ = "0.15.0"

Wyświetl plik

@ -2,7 +2,7 @@
<html dir="ltr" lang="en"> <html dir="ltr" lang="en">
<head> <head>
<title> <title>
Change Item | PyInventory v0.14.0 Change Item | PyInventory v0.15.0
</title> </title>
<link href="/static/admin/css/base.css" rel="stylesheet" type="text/css"/> <link href="/static/admin/css/base.css" rel="stylesheet" type="text/css"/>
<link href="/static/admin/css/nav_sidebar.css" rel="stylesheet" type="text/css"/> <link href="/static/admin/css/nav_sidebar.css" rel="stylesheet" type="text/css"/>
@ -80,7 +80,7 @@
<div id="branding"> <div id="branding">
<h1 id="site-name"> <h1 id="site-name">
<a href="/admin/"> <a href="/admin/">
PyInventory v0.14.0 PyInventory v0.15.0
</a> </a>
</h1> </h1>
</div> </div>