diff --git a/CHANGELOG.md b/CHANGELOG.md index 34ee7f6..58ce77b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [7.0.1] - 2026-04-13 + +### Changed + - Changed some dependencies: + +| Dependency | From | To | +|------------------|----------|----------| +| click | ~=8.3.1 | ~=8.3.2 | +| requests | ~=2.32 | ~=2.33.1 | +| pipdeptree (dev) | ~=2.30.0 | ~=2.35.1 | +| pytest (dev) | ~=9.0.0 | ~=9.0.3 | +| pytest-cov (dev) | ~=6.0.0 | ~=7.1.0 | + + ## [7.0.0] - 2026-02-11 ### Removed diff --git a/devo/__version__.py b/devo/__version__.py index 03a6c49..b6ad3aa 100644 --- a/devo/__version__.py +++ b/devo/__version__.py @@ -1,6 +1,6 @@ __description__ = "Devo Python Library." __url__ = "http://www.devo.com" -__version__ = "7.0.0" +__version__ = "7.0.1" __author__ = "Devo" __author_email__ = "support@devo.com" __license__ = "MIT" diff --git a/requirements-test.txt b/requirements-test.txt index 8c58bc4..434d3f8 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,8 +1,8 @@ mock~=5.2.0 msgpack~=1.1.2 pebble~=5.2.0 -pipdeptree~=2.30.0 -pytest~=9.0.0 -pytest-cov~=6.0.0 +pipdeptree~=2.35.1 +pytest~=9.0.3 +pytest-cov~=7.1.0 pytest-timeout~=2.4.0 responses~=0.26.0 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 3ce8c7b..1b1adc5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -click~=8.3.1 +click~=8.3.2 pem~=23.1.0 pyopenssl~=26.0.0 pyyaml~=6.0.3 pytz~=2026.1 -requests~=2.32 +requests~=2.33.1 diff --git a/setup.py b/setup.py index 5e05d63..3e4efdf 100644 --- a/setup.py +++ b/setup.py @@ -27,21 +27,21 @@ "Topic :: Software Development :: Libraries :: Python Modules", ] INSTALL_REQUIRES = [ - "click~=8.3.1", + "click~=8.3.2", "pem~=23.1.0", "pyopenssl~=26.0.0", "pytz~=2026.1", "pyyaml~=6.0.3", - "requests~=2.32", + "requests~=2.33.1", ] EXTRAS_REQUIRE = { "dev": [ "mock~=5.2.0", "msgpack~=1.1.2", "pebble~=5.2.0", - "pipdeptree~=2.30.0", - "pytest~=9.0.0", - "pytest-cov~=6.0.0", + "pipdeptree~=2.35.1", + "pytest~=9.0.3", + "pytest-cov~=7.1.0", "pytest-timeout~=2.4.0", "responses~=0.26.0", ]