Skip to content

Commit aab3bf5

Browse files
0.9.0
1 parent 9bdd815 commit aab3bf5

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
0.9.0 (2022-06-09 19:15:00 -0700)
2+
---------------------------------
3+
4+
- List 'ROS Infrastructure Team' as the package maintainer. `#168 <https://github.com/ros-infrastructure/rosdistro/issues/168>`_
5+
- Add GitHub Actions workflow for rosdistro CI. `#160 <https://github.com/ros-infrastructure/rosdistro/issues/160>`_
6+
- Declare test dependencies in [test] extra. `#169 <https://github.com/ros-infrastructure/rosdistro/issues/169>`_
7+
- Run tests with pytest instead of nose. `#167 <https://github.com/ros-infrastructure/rosdistro/issues/167>`_
8+
- Drop support for python < 2.7. `#166 <https://github.com/ros-infrastructure/rosdistro/issues/166>`_
9+
- Use unittest.mock where possible. `#165 <https://github.com/ros-infrastructure/rosdistro/issues/165>`_
10+
- Update release distributions. `#164 <https://github.com/ros-infrastructure/rosdistro/issues/164>`_
11+
- Use yaml.safe_load. `#162 <https://github.com/ros-infrastructure/rosdistro/issues/162>`_

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# same version as in:
1010
# - src/rosdistro/__init__.py
1111
# - stdeb.cfg
12-
'version': '0.8.3',
12+
'version': '0.9.0',
1313
'install_requires': ['PyYAML', 'setuptools'],
1414
'packages': find_packages('src'),
1515
'package_dir': {'': 'src'},

src/rosdistro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# same version as in:
6262
# - setup.py
6363
# - stdeb.cfg
64-
__version__ = '0.8.3'
64+
__version__ = '0.9.0'
6565

6666
# index information
6767

stdeb.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Debian-Version: 100
33
; rosdistro-modules same version as in:
44
; - setup.py
55
; - src/rosdistro/__init__.py
6-
Depends: ca-certificates, python-rosdistro-modules (>= 0.8.3), python-setuptools, python-yaml
6+
Depends: ca-certificates, python-rosdistro-modules (>= 0.9.0), python-setuptools, python-yaml
77
; rosdistro-modules same version as in:
88
; - setup.py
99
; - src/rosdistro/__init__.py
10-
Depends3: ca-certificates, python3-rosdistro-modules (>= 0.8.3), python3-setuptools, python3-yaml
10+
Depends3: ca-certificates, python3-rosdistro-modules (>= 0.9.0), python3-setuptools, python3-yaml
1111
Conflicts: python3-rosdistro
1212
Conflicts3: python-rosdistro
1313
Copyright-File: LICENSE.txt

0 commit comments

Comments
 (0)