diff --git a/CHANGES.rst b/CHANGES.rst index 403d98bf..cf43887d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,13 +4,42 @@ Changelog A list of changes between each release +0.22.5 (2024-01-07) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Warning: This release removes support for Python 3.8 and adds Python 3.12 support. + +**Bugfixes** + +- Add new keys for wifi, lfr, and battery (`mkmer #835 `__) +- Battery level (`mkmer #837 `__) +- Address not awaited warning (`mkmer #838 `__) +- Catch ContentTypeError in 2FA (`mkmer #843 `__) +- Handle empty put response in wait_command (`mkmer #847 `__) +- Change default user agent to fix API calls (`gingerm0nkey #848 `__) +- Android for new user agent (`mkmer #850 `__) + +**Other changes** + +- Remove Py3.8, add 3.12 (`fronzbot #839 `__) +- Deprecate py38 (`fronzbot #840 `__) +- Add/extract firmware version (`mkmer #842 `__) +- Additional logging, fix blinksync json (`mkmer #844 `__) +- Log text response (`mkmer #845 `__) +- Add tests for logging (`mkmer #846 `__) +- Bump ruff to 0.1.11 +- Bump black to 23.12.1 +- Bump coverage to 7.4.0 +- Bump pytest to 7.4.4 + + 0.22.4 (2023-12-18) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Bugfixes** -- Allow kwargs to throttled functions, await sleep in throttle (`mkmer #823 `__) -- add missing entry in type_key_map (`@Rosi2143 `__) +- Allow kwargs to throttled functions, await sleep in throttle (`mkmer #823 `__) +- add missing entry in type_key_map (`@Rosi2143 #813 `__) ** Other Changes ** diff --git a/README.rst b/README.rst index b3058a90..269ee368 100644 --- a/README.rst +++ b/README.rst @@ -32,9 +32,7 @@ To install the current development version, perform the following steps. Note t $ cd ~ $ git clone https://github.com/fronzbot/blinkpy.git $ cd blinkpy - $ rm -rf build dist - $ python3 setup.py bdist_wheel - $ pip3 install --upgrade dist/*.whl + $ pip install . If you'd like to contribute to this library, please read the `contributing instructions `__. diff --git a/pyproject.toml b/pyproject.toml index 03fae4a1..0c703e76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "blinkpy" -version = "0.23.0b3" +version = "0.22.5" license = {text = "MIT"} description = "A Blink camera Python Library." readme = "README.rst"