Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.5.1 #269

Merged
merged 1 commit into from
Apr 19, 2024
Merged

1.5.1 #269

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
1.5.1 (2024-04-19)
------------------
- Make tests portable enough to run on Windows
- https://github.com/ros-infrastructure/rospkg/pull/268
- Switch to ros-infrastructure centralized CI
- https://github.com/ros-infrastructure/rospkg/pull/267
- Add detection logic for Fedora Asahi Remix
- https://github.com/ros-infrastructure/rospkg/pull/265
- Update debian codename mapping
- https://github.com/ros-infrastructure/rospkg/pull/266
- Add macOS Sonoma to _osx_codename_map
- https://github.com/ros-infrastructure/rospkg/pull/262
- Update deb platforms for release
- https://github.com/ros-infrastructure/rospkg/pull/263
- Update CI testing matrix
- https://github.com/ros-infrastructure/rospkg/pull/264

1.5.0 (2023-03-20)
------------------
- Add ventura in the _osx_codename_map
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# same version as in:
# - src/rospkg/__init__.py
# - stdeb.cfg
'version': '1.5.0',
'version': '1.5.1',
'packages': ['rospkg'],
'package_dir': {'': 'src'},
'entry_points': {
Expand Down
2 changes: 1 addition & 1 deletion src/rospkg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# same version as in:
# - setup.py
# - stdeb.cfg
__version__ = '1.5.0'
__version__ = '1.5.1'

__all__ = (
'MANIFEST_FILE', 'ResourceNotFound', 'STACK_FILE',
Expand Down
4 changes: 2 additions & 2 deletions stdeb.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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.0)
Depends: python-rospkg-modules (>= 1.5.1)
; rospkg-modules same version as in:
; - setup.py
; - src/rospkg/__init__.py
Depends3: python3-rospkg-modules (>= 1.5.0)
Depends3: python3-rospkg-modules (>= 1.5.1)
Conflicts: python3-rospkg
Conflicts3: python-rospkg
Suite: bionic buster
Expand Down