Skip to content

Commit

Permalink
0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay committed May 3, 2024
1 parent c928730 commit c2f729b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.9.1 (2024-05-03 13:38:00 -0500)
---------------------------------

- Don't capture stderr when running git commands. `#179 <https://github.com/ros-infrastructure/rosdistro/issues/179>`_
- Enable CI testing on Windows now that tests pass. `#180 <https://github.com/ros-infrastructure/rosdistro/issues/180>`_
- Switch to a raw string for various regexes. `#174 <https://github.com/ros-infrastructure/rosdistro/issues/174>`_
- Make path operations and conversions portable in tests. `#177 <https://github.com/ros-infrastructure/rosdistro/issues/177>`_
- Don't use os.path.sep for creating tar paths. `#178 <https://github.com/ros-infrastructure/rosdistro/issues/178>`_

0.9.0 (2022-06-09 19:15:00 -0700)
---------------------------------

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.0',
'version': '0.9.1',
'install_requires': ['PyYAML', 'setuptools'],
'packages': find_packages('src'),
'package_dir': {'': '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 @@ -61,7 +61,7 @@
# same version as in:
# - setup.py
# - stdeb.cfg
__version__ = '0.9.0'
__version__ = '0.9.1'

# index information

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
; rosdistro-modules same version as in:
; - setup.py
; - src/rosdistro/__init__.py
Depends: ca-certificates, python-rosdistro-modules (>= 0.9.0), python-setuptools, python-yaml
Depends: ca-certificates, python-rosdistro-modules (>= 0.9.1), python-setuptools, python-yaml
; rosdistro-modules same version as in:
; - setup.py
; - src/rosdistro/__init__.py
Depends3: ca-certificates, python3-rosdistro-modules (>= 0.9.0), python3-setuptools, python3-yaml
Depends3: ca-certificates, python3-rosdistro-modules (>= 0.9.1), python3-setuptools, python3-yaml
Conflicts: python3-rosdistro
Conflicts3: python-rosdistro
Copyright-File: LICENSE.txt
Expand Down

0 comments on commit c2f729b

Please sign in to comment.