Skip to content

Commit

Permalink
Merge pull request #802 from fronzbot/dev
Browse files Browse the repository at this point in the history
0.22.3
  • Loading branch information
fronzbot authored Nov 5, 2023
2 parents b432469 + 37ae4ad commit 3d7e49a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ Changelog

A list of changes between each release

0.22.3 (2023-11-05)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

**Bugfixes**

- Check for none and empty dict (fix of home-assistant/core#103312) (`@mkmer #800 <https://github.com/fronzbot/blinkpy/pull/800>`__)

** Other Changes **

- Bump ruff to 0.1.3
- Bump pytest to 7.4.3
- Bump black to 23.10.1


0.22.2 (2023-10-13)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Same as 0.22.1 (pypi upload issue)

0.22.1 (2023-10-13)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion blinkpy/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ async def set_motion_detect(self, enable):

async def update(self, config, force_cache=False, expire_clips=True, **kwargs):
"""Update camera info."""
if config != {}:
if bool(config):
self.extract_config_info(config)
await self.get_sensor_info()
await self.update_images(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "blinkpy"
version = "0.22.2"
version = "0.22.3"
license = {text = "MIT"}
description = "A Blink camera Python Library."
readme = "README.rst"
Expand Down
6 changes: 3 additions & 3 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ruff==0.0.292
black==23.9.1
ruff==0.1.3
black==23.10.1
build==1.0.3
coverage==7.3.2
pytest==7.4.2
pytest==7.4.3
pytest-cov==4.1.0
pytest-sugar==0.9.7
pytest-timeout==2.2.0
Expand Down

0 comments on commit 3d7e49a

Please sign in to comment.