diff --git a/CHANGES.rst b/CHANGES.rst index 310b2337..1671b96e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,14 @@ Changelog A list of changes between each release +0.16.1 (2020-07-29) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Unpin requeirements, set minimum version instead +- Bump coverage to 5.2.1 +- Bump pytest to 6.0.0 + + 0.16.0 (2020-07-20) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 180e6598..80fa202a 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -4,7 +4,7 @@ MAJOR_VERSION = 0 MINOR_VERSION = 16 -PATCH_VERSION = 0 +PATCH_VERSION = 1 __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}" diff --git a/requirements.txt b/requirements.txt index 9e0e0208..384d3bda 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -python-dateutil~=2.8.1 -requests~=2.24.0 -python-slugify~=4.0.1 -testtools==2.4.0 +python-dateutil>=2.8.1 +requests>=2.24.0 +python-slugify>=4.0.1 +testtools>=2.4.0 diff --git a/requirements_test.txt b/requirements_test.txt index 378ac722..7a1acc25 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -1,11 +1,11 @@ black==19.10b0 -coverage==5.2 +coverage==5.2.1 flake8==3.8.3 flake8-docstrings==1.5.0 pre-commit==2.6.0 pylint==2.5.3 pydocstyle==5.0.2 -pytest==5.4.3 +pytest==6.0.0 pytest-cov==2.10.0 pytest-sugar==0.9.4 pytest-timeout==1.4.2