diff --git a/CHANGELOG.md b/CHANGELOG.md index d6307a9..be653d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,23 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) for commit guidelines. -## [Unreleased](https://github.com/afuetterer/oaipmh-scythe/compare/0.12.1...main) +## [Unreleased](https://github.com/afuetterer/oaipmh-scythe/compare/0.13.0...main) +## [0.13.0](https://github.com/afuetterer/oaipmh-scythe/compare/0.12.1...0.13.0) (2024-05-07) + +### Features + +- **client:** make numeric arguments accept 'int | float' (#366) ([`b53bbed`](https://github.com/afuetterer/oaipmh-scythe/commit/b53bbed65440f974b6c09b161a66a303fb57c3bd)) + +### Documentation + +- **readme:** add codeql badge (#365) ([`eca3e3b`](https://github.com/afuetterer/oaipmh-scythe/commit/eca3e3b221bebdb47d72112c0e5f529298eadf77)) +- **tutorial:** fix typo (#353) ([`65f75b8`](https://github.com/afuetterer/oaipmh-scythe/commit/65f75b82515cc772d82cf745b8763cb291d3ff2a)) +- add references to exceptions in docstrings (#351) ([`4df8491`](https://github.com/afuetterer/oaipmh-scythe/commit/4df8491502bc65ae0589c6686b71756d205f4411)) + + ## [0.12.1](https://github.com/afuetterer/oaipmh-scythe/compare/0.12.0...0.12.1) (2024-04-25) ### Bug Fixes diff --git a/CITATION.cff b/CITATION.cff index e6b48b9..50729e5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,5 +14,5 @@ keywords: - metadata - oai-pmh - oai-pmh-client -version: 0.12.1 -date-released: 2024-04-25 +version: 0.13.0 +date-released: 2024-05-07 diff --git a/src/oaipmh_scythe/__about__.py b/src/oaipmh_scythe/__about__.py index def467e..f23a6b3 100644 --- a/src/oaipmh_scythe/__about__.py +++ b/src/oaipmh_scythe/__about__.py @@ -1 +1 @@ -__version__ = "0.12.1" +__version__ = "0.13.0"