Skip to content

Commit 2010403

Browse files
committed
Release v2.6.0
1 parent b5281b7 commit 2010403

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
[Unreleased]: https://github.com/althonos/pronto/compare/v2.5.8...HEAD
8+
[Unreleased]: https://github.com/althonos/pronto/compare/v2.6.0...HEAD
9+
10+
## [v2.6.0] - 2025-02-14
11+
[v2.6.0]: https://github.com/althonos/pronto/compare/v2.5.8...v2.6.0
12+
### Added
13+
- Explicit support for Python 3.13.
14+
- OWL/XML and RDF/XML format support for `Ontology.dump` ([#232](https://github.com/althonos/pronto/issues/232), [#149](https://github.com/althonos/pronto/issues/149)).
15+
### Changed
16+
- Bump `fastobo` to `v0.13.0`.
17+
- Use `pyproject.toml` to store project metadata instead of `setup.cfg`.
18+
### Fixed
19+
- RDF/XML parser not supporting `owl:annotatedTarget` given as attributes.
20+
- Warn when failing to parse a xref in RDF/XML class parser.
21+
- Allow undeclared synonym types in RDF/XML parser ([#229](https://github.com/althonos/pronto/issues/229)).
922

1023
## [v2.5.8] - 2024-09-14
1124
[v2.5.8]: https://github.com/althonos/pronto/compare/v2.5.7...v2.5.8

docs/source/_static/json/switcher.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[
22
{
3-
"name": "v2.5 (stable)",
3+
"name": "v2.6 (stable)",
4+
"version": "2.6.0",
5+
"url": "https://pronto.readthedocs.io/en/v2.6.0/"
6+
},
7+
{
8+
"name": "v2.5",
49
"version": "2.5.8",
510
"url": "https://pronto.readthedocs.io/en/v2.5.8/"
611
},

pronto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
__author__ = "Martin Larralde <martin.larralde@embl.de>"
6262
__license__ = "MIT"
63-
__version__ = "2.5.8"
63+
__version__ = "2.6.0"
6464

6565
# Update the docstring with a link to the right version of the documentation
6666
# instead of the latest.

0 commit comments

Comments
 (0)