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

Prepare 0.25.0 release. #981

Merged
merged 1 commit into from
Aug 17, 2024
Merged
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
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
0.25.0 (2024-08-16)
-------------------
- Remove Python 2 release configuration.
- https://github.com/ros-infrastructure/rosdep/issues/970
- Remove Python 2 compatibility imports.
- https://github.com/ros-infrastructure/rosdep/issues/973
- Unpin flake8 version and resolve new violations.
- https://github.com/ros-infrastructure/rosdep/issues/975
- Updates to pass flake8-builtins.
- https://github.com/ros-infrastructure/rosdep/issues/974
- Updates to pass flake8-quotes.
- https://github.com/ros-infrastructure/rosdep/issues/972
- Update documentation to recommend installing rosdep via sysem packages.
- https://github.com/ros-infrastructure/rosdep/issues/954
- Check for pip configuration before installing into externally managed environment.
- https://github.com/ros-infrastructure/rosdep/issues/979
- See http://docs.ros.org/en/independent/api/rosdep/html/pip_and_pep_668.html for additional details.

0.24.0 (2024-05-07)
-------------------
- Reapply "fix: pkg_resources deprecated warning"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# same version as in:
# - src/rosdep2/_version.py
# - stdeb.cfg
'version': '0.24.0',
'version': '0.25.0',
'packages': ['rosdep2', 'rosdep2.ament_packages', 'rosdep2.platforms'],
'package_dir': {'': 'src'},
'install_requires': [
Expand Down
2 changes: 1 addition & 1 deletion src/rosdep2/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# same version as in:
# - setup.py
# - stdeb.cfg
__version__ = '0.24.0'
__version__ = '0.25.0'
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; rosdep-modules same version as in:
; - setup.py
; - src/rosdep2/_version.py
Depends3: python3-rosdep-modules (>= 0.24.0)
Depends3: python3-rosdep-modules (>= 0.25.0)
Conflicts3: python-rosdep, python-rosdep2, python3-rosdep2
Copyright-File: LICENSE
Suite3: focal jammy noble bookworm trixie
Expand Down
Loading