Skip to content

Commit 9dad761

Browse files
author
Igor Milhit
committed
release: v0.9.1
This patch is needed because a pull request with a fix on translation is missing in v0.9.0, resulting in many user interface elements that are missing. * Updates the version.py and bundles.py files. * Updates the CHANGES.rst and RELEASE-NOTES.rst files. Co-Authored-by: Igor Milhit <[email protected]>
1 parent 99ed8b8 commit 9dad761

File tree

4 files changed

+67
-2
lines changed

4 files changed

+67
-2
lines changed

CHANGES.rst

+24
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,30 @@
1717
Changes
1818
=======
1919

20+
`v0.9.1 <https://github.com/rero/rero-ils/tree/v0.9.1>`__ (2020-06-03)
21+
----------------------------------------------------------------------
22+
23+
`Full
24+
Changelog <https://github.com/rero/rero-ils/compare/v0.9.0...v0.9.1>`__
25+
26+
**Closed issues:**
27+
28+
- Action realised in circulation must be in the past participle
29+
`#890 <https://github.com/rero/rero-ils/issues/890>`__
30+
31+
**Merged pull requests:**
32+
33+
- Documentation resources: circulation actions, reroils_resources and
34+
loan state chart
35+
`#1017 <https://github.com/rero/rero-ils/pull/1017>`__
36+
(`blankoworld <https://github.com/blankoworld>`__)
37+
- translation: fix translations API
38+
`#1013 <https://github.com/rero/rero-ils/pull/1013>`__
39+
(`zannkukai <https://github.com/zannkukai>`__)
40+
- nginx logging `#1007 <https://github.com/rero/rero-ils/pull/1007>`__
41+
(`rerowep <https://github.com/rerowep>`__)
42+
43+
2044
`v0.9.0 <https://github.com/rero/rero-ils/tree/v0.9.0>`__ (2020-06-02)
2145
----------------------------------------------------------------------
2246

RELEASE-NOTES.rst

+41
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,47 @@
1818
Release notes
1919
=============
2020

21+
v0.9.1
22+
------
23+
24+
This patch is needed because `#1013`_ is missing in ``v0.9.0``, resulting in
25+
many user interface elements that are missing.
26+
27+
Documentation
28+
~~~~~~~~~~~~~
29+
30+
- Updates the chart of links between RERO ILS resources.
31+
- Replace circulation chart with a new chart using ``dot`` from
32+
``graphviz``.
33+
- Adds a markdown file with all circulation actions explained.
34+
- Adds a markdown file with scenarios based on these actions.
35+
- Enriches the mention of contributing libraries with UNamur and
36+
U.Saint-Louis Brussels (``README.rst``).
37+
38+
Translations
39+
~~~~~~~~~~~~
40+
41+
- Fixes a bug with the translation API that prevented exception to be
42+
logged.
43+
- Returns the source string instead of an empty string when the translation is
44+
missing.
45+
46+
Instance
47+
~~~~~~~~
48+
49+
- Improves the `nginx` logs to prevents the OPTIONS requests to be logged to
50+
get cleaner logs in deployed instances.
51+
52+
Issues
53+
~~~~~~
54+
55+
- `#890`__: Displays the realized actions in the circulation interface to the
56+
past participle, so that the librarian knows the actions are actually done.
57+
58+
59+
.. _#1013: https://github.com/rero/rero-ils/pull/1013
60+
61+
2162
v0.9.0
2263
------
2364

rero_ils/bundles.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from invenio_assets import AngularGettextFilter, GlobBundle, NpmBundle
2525
from pkg_resources import resource_filename
2626

27-
RERO_ILS_UI_VERSION = '0.2.0'
27+
RERO_ILS_UI_VERSION = '0.2.1'
2828

2929

3030
def catalog(domain):

rero_ils/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
from __future__ import absolute_import, print_function
2525

26-
__version__ = "0.9.0"
26+
__version__ = "0.9.1"

0 commit comments

Comments
 (0)