Skip to content

Commit

Permalink
chore: update version to 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnsilva committed Jul 8, 2024
1 parent f116162 commit 472b96d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion semanticscholar/AsyncSemanticScholar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion semanticscholar/SemanticScholar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 472b96d

Please sign in to comment.