diff --git a/CHANGELOG.md b/CHANGELOG.md index 528a033..43a4244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1] - 2024-05-17 + +### Bug Fixes + +- Fixed [#87](https://github.com/danielnsilva/semanticscholar/issues/87): `get_authors()` fails when one of the IDs was not found. ([ae03dbb](https://github.com/danielnsilva/semanticscholar/commit/ae03dbb)) + ## [0.8.0] - 2024-03-15 ### New Features @@ -164,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.3] - 2019-08-02 -[unreleased]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.0...HEAD +[unreleased]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.1...HEAD +[0.8.1]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/danielnsilva/semanticscholar/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/danielnsilva/semanticscholar/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/danielnsilva/semanticscholar/compare/v0.5.0...v0.6.0 diff --git a/setup.py b/setup.py index 4db491d..3034488 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='semanticscholar', - version='0.8.0', + version='0.8.1', description='Unofficial Python client library for Semantic Scholar APIs.', long_description=long_description, long_description_content_type="text/markdown",