From 3dd3261709d1a8909855fcb671691e4eb66a3760 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 19 Apr 2024 14:14:33 -0500 Subject: [PATCH] 0.23.0 --- CHANGELOG.rst | 21 +++++++++++++++++++++ setup.py | 4 ++-- src/rosdep2/_version.py | 2 +- stdeb.cfg | 4 ++-- 4 files changed, 26 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ad5fc3ca9..e8286aae2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,24 @@ +0.23.0 (2023-04-19) +------------------- +- Use setup.cfg to configure flake8, instead of in the ci code + - https://github.com/ros-infrastructure/rosdep/pull/930 +- Fix makefile target test (``make test``) failing due to "cd test" + - https://github.com/ros-infrastructure/rosdep/pull/951 +- Implement test fixture for faking the rosdistro repo + - https://github.com/ros-infrastructure/rosdep/pull/949 +- Return non-zero if ``rosdep check`` cannot locate dependent + - https://github.com/ros-infrastructure/rosdep/pull/948 +- Fix potential bug in test_rosdep_sources_list.py + - https://github.com/ros-infrastructure/rosdep/pull/952 +- Fix pkg_resources deprecated warning + - https://github.com/ros-infrastructure/rosdep/pull/926 +- Print exception if it's of type URLError + - https://github.com/ros-infrastructure/rosdep/pull/946 +- Teach rosdep to use ROS_VERSION when resolving conditionals + - https://github.com/ros-infrastructure/rosdep/pull/941 +- Resolve flake8-comprehensions violations + - https://github.com/ros-infrastructure/rosdep/pull/943 + 0.22.2 (2023-03-20) ------------------- - Enable rosdep init to work with non-extant ROSDEP_SOURCE_PATH diff --git a/setup.py b/setup.py index 135822ae6..2b8c24847 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,9 @@ kwargs = { 'name': 'rosdep', # same version as in: - # - src/rosdep2/__init__.py + # - src/rosdep2/_version.py # - stdeb.cfg - 'version': '0.22.2', + 'version': '0.23.0', 'packages': ['rosdep2', 'rosdep2.ament_packages', 'rosdep2.platforms'], 'package_dir': {'': 'src'}, 'install_requires': [ diff --git a/src/rosdep2/_version.py b/src/rosdep2/_version.py index 32e7eb016..d70a78e26 100644 --- a/src/rosdep2/_version.py +++ b/src/rosdep2/_version.py @@ -1,4 +1,4 @@ # same version as in: # - setup.py # - stdeb.cfg -__version__ = '0.22.2' +__version__ = '0.23.0' diff --git a/stdeb.cfg b/stdeb.cfg index 67d1bb204..ae7270d22 100644 --- a/stdeb.cfg +++ b/stdeb.cfg @@ -2,11 +2,11 @@ ; rosdep-modules same version as in: ; - setup.py ; - src/rosdep2/_version.py -Depends: python-rosdep-modules (>= 0.22.2) +Depends: python-rosdep-modules (>= 0.23.0) ; rosdep-modules same version as in: ; - setup.py ; - src/rosdep2/_version.py -Depends3: python3-rosdep-modules (>= 0.22.2) +Depends3: python3-rosdep-modules (>= 0.23.0) Conflicts: python3-rosdep, python-rosdep2, python3-rosdep2 Conflicts3: python-rosdep, python-rosdep2, python3-rosdep2 Copyright-File: LICENSE