Skip to content

Commit 3d7e49a

Browse files
authored
Merge pull request #802 from fronzbot/dev
0.22.3
2 parents b432469 + 37ae4ad commit 3d7e49a

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGES.rst

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ Changelog
44

55
A list of changes between each release
66

7+
0.22.3 (2023-11-05)
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
**Bugfixes**
11+
12+
- Check for none and empty dict (fix of home-assistant/core#103312) (`@mkmer #800 <https://github.com/fronzbot/blinkpy/pull/800>`__)
13+
14+
** Other Changes **
15+
16+
- Bump ruff to 0.1.3
17+
- Bump pytest to 7.4.3
18+
- Bump black to 23.10.1
19+
20+
21+
0.22.2 (2023-10-13)
22+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23+
24+
Same as 0.22.1 (pypi upload issue)
25+
726
0.22.1 (2023-10-13)
827
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
928

blinkpy/camera.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ async def set_motion_detect(self, enable):
217217

218218
async def update(self, config, force_cache=False, expire_clips=True, **kwargs):
219219
"""Update camera info."""
220-
if config != {}:
220+
if bool(config):
221221
self.extract_config_info(config)
222222
await self.get_sensor_info()
223223
await self.update_images(

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "blinkpy"
7-
version = "0.22.2"
7+
version = "0.22.3"
88
license = {text = "MIT"}
99
description = "A Blink camera Python Library."
1010
readme = "README.rst"

requirements_test.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ruff==0.0.292
2-
black==23.9.1
1+
ruff==0.1.3
2+
black==23.10.1
33
build==1.0.3
44
coverage==7.3.2
5-
pytest==7.4.2
5+
pytest==7.4.3
66
pytest-cov==4.1.0
77
pytest-sugar==0.9.7
88
pytest-timeout==2.2.0

0 commit comments

Comments
 (0)