Update instructions for releasing and migrate changelog - #407
Merged
sdb9696 merged 1 commit intoAug 21, 2024
Merged
Conversation
Merged
sdb9696
added a commit
that referenced
this pull request
Aug 21, 2024
## [0.9.0](https://github.com/tchellomello/python-ring-doorbell/tree/0.9.0) (2024-08-21) [Full Changelog](0.8.12...0.9.0) **Release highlights:** - Async support for the library - Removed python 3.8 support **Breaking changes:** - Synchronous api calls are now deprecated. For example calling `Ring.update_data()` will emit a deprecation warning to use `await Ring.async_update_data()` which should be run within an event loop via `asyncio.run()`. See `test.py` for an example. - Calling the deprecated sync api methods from inside a running event loop is not supported. This is unlikely to affect many consumers as the norm if running in an event loop is to make synchronous api calls from an executor thread. - Python 3.8 is no longer officially supported and could break in future releases. **Breaking change pull requests:** - Drop python3.8 support and enable python3.13 in the CI [\#398](#398) (@sdb9696) **Implemented enhancements:** - Make library fully async [\#361](#361) (@sdb9696) **Fixed bugs:** - Small change to modify the timestamp [\#378](#378) (@AndrewMohawk) **Project maintenance:** - Update instructions for releasing and migrate changelog [\#407](#407) (@sdb9696) - Add .vscode folder to gitignore [\#397](#397) (@sdb9696) - Update dependencies [\#396](#396) (@sdb9696) - Reduce lock and stale workflow frequency [\#388](#388) (@sdb9696)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
sphinx-github-changelog was failing silently and is probably a bit too flaky as a result. This PR migrates to a local generator that creates a changelog in source control and supports markdown in the docs to include the generated changelog.