diff --git a/CHANGELOG.md b/CHANGELOG.md index 2818f95..803a042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.3] - 2024-07-08 + ### Enhancements - Replaced debug parameter with Python's standard logging in DEBUG level. ([d5bfa38](https://github.com/danielnsilva/semanticscholar/commit/d5bfa38)) @@ -186,7 +188,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.2...HEAD +[unreleased]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.3...HEAD +[0.8.3]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.2...v0.8.3 [0.8.2]: https://github.com/danielnsilva/semanticscholar/compare/v0.8.1...v0.8.2 [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 diff --git a/semanticscholar/AsyncSemanticScholar.py b/semanticscholar/AsyncSemanticScholar.py index 4240264..0ab16c5 100644 --- a/semanticscholar/AsyncSemanticScholar.py +++ b/semanticscholar/AsyncSemanticScholar.py @@ -86,7 +86,7 @@ def debug(self) -> bool: :type: :class:`bool` - .. deprecated:: unreleased + .. deprecated:: 0.8.3 Use Python\'s standard logging in DEBUG level instead. ''' return self._debug diff --git a/semanticscholar/SemanticScholar.py b/semanticscholar/SemanticScholar.py index a1342f0..00980dd 100644 --- a/semanticscholar/SemanticScholar.py +++ b/semanticscholar/SemanticScholar.py @@ -65,7 +65,7 @@ def debug(self) -> bool: :type: :class:`bool` - .. deprecated:: unreleased + .. deprecated:: 0.8.3 Use Python\'s standard logging in DEBUG level instead. ''' return self._debug diff --git a/setup.py b/setup.py index 1577f72..0b90f4e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='semanticscholar', - version='0.8.2', + version='0.8.3', description='Unofficial Python client library for Semantic Scholar APIs.', long_description=long_description, long_description_content_type="text/markdown",