From 9635d55e7ca9ffb261fc26213f3d9d9f629f7c43 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Sat, 14 Sep 2024 17:49:27 +0200 Subject: [PATCH] Release v2.5.8 --- .github/workflows/test.yml | 2 ++ CHANGELOG.md | 10 +++++++++- docs/source/_static/json/switcher.json | 4 ++-- pronto/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d76e930..b1aa77e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -91,6 +91,8 @@ jobs: if: "startsWith(github.ref, 'refs/tags/v')" name: Release needs: package + permissions: + contents: write steps: - name: Checkout code uses: actions/checkout@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e4b09..0a5a667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -[Unreleased]: https://github.com/althonos/pronto/compare/v2.5.7...HEAD +[Unreleased]: https://github.com/althonos/pronto/compare/v2.5.8...HEAD + +## [v2.5.8] - 2024-09-14 +[v2.5.8]: https://github.com/althonos/pronto/compare/v2.5.7...v2.5.8 +### Fixed +- Extraction of implicit string annotation in RDF/XML files ([#231](https://github.com/althonos/pronto/issues/231)). +- RDF/XML parser crash on `oboInOwl:SynonymTypeProperty` when missing a scope ([#230](https://github.com/althonos/pronto/issues/230)). +### Changed +- Migrate documentation to PyData theme. ## [v2.5.7] - 2024-04-24 [v2.5.7]: https://github.com/althonos/pronto/compare/v2.5.6...v2.5.7 diff --git a/docs/source/_static/json/switcher.json b/docs/source/_static/json/switcher.json index 1f92b4a..9ce23ee 100644 --- a/docs/source/_static/json/switcher.json +++ b/docs/source/_static/json/switcher.json @@ -1,8 +1,8 @@ [ { "name": "v2.5 (stable)", - "version": "2.5.7", - "url": "https://pronto.readthedocs.io/en/v2.5.7/" + "version": "2.5.8", + "url": "https://pronto.readthedocs.io/en/v2.5.8/" }, { "name": "v2.4", diff --git a/pronto/__init__.py b/pronto/__init__.py index 32e45bb..cd16900 100644 --- a/pronto/__init__.py +++ b/pronto/__init__.py @@ -60,7 +60,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "2.5.7" +__version__ = "2.5.8" # Update the docstring with a link to the right version of the documentation # instead of the latest.