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.0.0 #190

Merged
merged 1 commit into from
Oct 11, 2024
Merged

1.0.0 #190

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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.0.0 (2024-10-11 10:00:00 -0500)
---------------------------------

- Migrate from 'scripts' to 'entry_points.console_scripts'. `#186 <https://github.com/ros-infrastructure/rosdistro/pull/186>`_
- Add get_package_condition_context function. `#182 <https://github.com/ros-infrastructure/rosdistro/pull/182>`_
- Drop support for Python 2. `#183 <https://github.com/ros-infrastructure/rosdistro/pull/183>`_

0.9.1 (2024-05-03 13:38:00 -0500)
---------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# same version as in:
# - src/rosdistro/__init__.py
# - stdeb.cfg
'version': '0.9.1',
'version': '1.0.0',
'install_requires': ['PyYAML', 'setuptools'],
'python_requires': '>=3.6',
'packages': find_packages('src'),
Expand Down
2 changes: 1 addition & 1 deletion src/rosdistro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# same version as in:
# - setup.py
# - stdeb.cfg
__version__ = '0.9.1'
__version__ = '1.0.0'

# index information

Expand Down
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Debian-Version: 100
; rosdistro-modules same version as in:
; - setup.py
; - src/rosdistro/__init__.py
Depends3: ca-certificates, python3-rosdistro-modules (>= 0.9.1), python3-setuptools, python3-yaml
Depends3: ca-certificates, python3-rosdistro-modules (>= 1.0.0), python3-setuptools, python3-yaml
Conflicts3: python-rosdistro
Copyright-File: LICENSE.txt
Suite3: focal jammy noble bookworm trixie
Expand Down
Loading