From db7614e5209137faa6ec01e2edaf34f775780b1a Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 24 Jan 2025 17:03:41 -0600 Subject: [PATCH] 1.6.0 --- CHANGELOG.rst | 11 +++++++++++ setup.py | 2 +- src/rospkg/__init__.py | 2 +- stdeb.cfg | 4 ++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4a0b614..f580728 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +1.6.0 (2025-01-24) +------------------ +- Add 'Duke' to Debian codename mapping + - https://github.com/ros-infrastructure/rospkg/pull/273 +- Raise minimum required Python version to 3.6 + - https://github.com/ros-infrastructure/rospkg/pull/272 +- Add macOS 15 to _osx_codename_map + - https://github.com/ros-infrastructure/rospkg/pull/271 +- Fix test_tripwire_uname_get_machine on macOS + - https://github.com/ros-infrastructure/rospkg/pull/270 + 1.5.1 (2024-04-19) ------------------ - Make tests portable enough to run on Windows diff --git a/setup.py b/setup.py index 7e38e2d..c17e142 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # same version as in: # - src/rospkg/__init__.py # - stdeb.cfg - 'version': '1.5.1', + 'version': '1.6.0', 'packages': ['rospkg'], 'package_dir': {'': 'src'}, 'entry_points': { diff --git a/src/rospkg/__init__.py b/src/rospkg/__init__.py index 8a3f169..3527b80 100644 --- a/src/rospkg/__init__.py +++ b/src/rospkg/__init__.py @@ -45,7 +45,7 @@ # same version as in: # - setup.py # - stdeb.cfg -__version__ = '1.5.1' +__version__ = '1.6.0' __all__ = ( 'MANIFEST_FILE', 'ResourceNotFound', 'STACK_FILE', diff --git a/stdeb.cfg b/stdeb.cfg index 8563899..f6d14d1 100644 --- a/stdeb.cfg +++ b/stdeb.cfg @@ -3,11 +3,11 @@ Debian-Version: 100 ; rospkg-modules same version as in: ; - setup.py ; - src/rospkg/__init__.py -Depends: python-rospkg-modules (>= 1.5.1) +Depends: python-rospkg-modules (>= 1.6.0) ; rospkg-modules same version as in: ; - setup.py ; - src/rospkg/__init__.py -Depends3: python3-rospkg-modules (>= 1.5.1) +Depends3: python3-rospkg-modules (>= 1.6.0) Conflicts: python3-rospkg Conflicts3: python-rospkg Suite: bionic buster