diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1f4c36..cec848e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [v1.10.0](https://github.com/rero/sonar/tree/v1.10.0) (2024-01-23) + +[Full Changelog](https://github.com/rero/sonar/compare/v1.9.1...v1.10.0) + +**Enhancements:** +* documents: add wildcard query to document identifiers [\#963](https://github.com/rero/sonar/pull/963) (by @jma) +* monitoring: REDIS, ES indicies [\#932](https://github.com/rero/sonar/pull/932) (by @rerowep) +* dependencies: upgrade invenio packages [\#966](https://github.com/rero/sonar/pull/966) (by @jma) + +**Fixes:** +* The button "search in full-text" doesn't work [\#965](https://github.com/rero/sonar/issues/965) (by @jma) +* translations: translate "full-text" field name in UI [\#957](https://github.com/rero/sonar/issues/957) (by @PascalRepond) +* Thumbnails not displayed in brief view [\#959](https://github.com/rero/sonar/issues/959) (by @jma) +* Link to file is broken when the file name contains special characters [\#861](https://github.com/rero/sonar/issues/861) (by @jma) +* monitoring: fix projects database count [\#971](https://github.com/rero/sonar/issues/971) (by @jma) +* monitoring: access token [\#968](https://github.com/rero/sonar/issues/968) (by @rerowep) + +**Other changes:** +* chore: update github templates and workflows [\#958](https://github.com/rero/sonar/pull/958) (by @PascalRepond) + ## [v1.9.1](https://github.com/rero/sonar/tree/v1.9.1) (2023-10-11) [Full Changelog](https://github.com/rero/sonar/compare/v1.9.0...v1.9.1) diff --git a/pyproject.toml b/pyproject.toml index bd9b09dc..440061e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "SONAR" -version = "1.9.1" +version = "1.10.0" description = "SONAR is an archive of scholarly publications. It intends to collect, promote and preserve the publications of authors affiliated with Swiss public research institutions." authors = ["RERO "] license = "GNU Affero General Public License v3.0" diff --git a/sonar/config_sonar.py b/sonar/config_sonar.py index f3994614..495fc2bc 100644 --- a/sonar/config_sonar.py +++ b/sonar/config_sonar.py @@ -525,7 +525,7 @@ """Disable permission checks during API calls. Useful when API is test from command line or progams like postman.""" -SONAR_APP_UI_VERSION = '14.0.0' +SONAR_APP_UI_VERSION = '14.0.1' SONAR_APP_DEFAULT_ORGANISATION = 'global' """Default organisation key.""" diff --git a/sonar/version.py b/sonar/version.py index c3f2f64e..6c144341 100644 --- a/sonar/version.py +++ b/sonar/version.py @@ -23,4 +23,4 @@ from __future__ import absolute_import, print_function -__version__ = '1.9.1' +__version__ = '1.10.0'