From c33718670d4681eec84dad1169f18848e1768c7c Mon Sep 17 00:00:00 2001 From: PascalRepond Date: Wed, 20 Dec 2023 09:46:53 +0100 Subject: [PATCH] release: v1.9.2 Co-Authored-by: Pascal Repond --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- sonar/config_sonar.py | 2 +- sonar/version.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1f4c36..f2c24688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [v1.9.2](https://github.com/rero/sonar/tree/v1.9.2) (2023-12-20) + +[Full Changelog](https://github.com/rero/sonar/compare/v1.9.1...v1.9.2) + +**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) + +**Fixes:** +* 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) + +**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 aa3e3393..63d7abf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "SONAR" -version = "1.9.1" +version = "1.9.2" 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..d3ddf17a 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.9.2'