From c2f729b25f9d76c4a8881c023d3ca513b502c14f Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 3 May 2024 13:40:03 -0500 Subject: [PATCH] 0.9.1 --- CHANGELOG.rst | 9 +++++++++ setup.py | 2 +- src/rosdistro/__init__.py | 2 +- stdeb.cfg | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 23a97438..4f971da5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +0.9.1 (2024-05-03 13:38:00 -0500) +--------------------------------- + +- Don't capture stderr when running git commands. `#179 `_ +- Enable CI testing on Windows now that tests pass. `#180 `_ +- Switch to a raw string for various regexes. `#174 `_ +- Make path operations and conversions portable in tests. `#177 `_ +- Don't use os.path.sep for creating tar paths. `#178 `_ + 0.9.0 (2022-06-09 19:15:00 -0700) --------------------------------- diff --git a/setup.py b/setup.py index 37ca4065..995c4b02 100755 --- a/setup.py +++ b/setup.py @@ -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'}, diff --git a/src/rosdistro/__init__.py b/src/rosdistro/__init__.py index 64b9f852..927dc154 100644 --- a/src/rosdistro/__init__.py +++ b/src/rosdistro/__init__.py @@ -61,7 +61,7 @@ # same version as in: # - setup.py # - stdeb.cfg -__version__ = '0.9.0' +__version__ = '0.9.1' # index information diff --git a/stdeb.cfg b/stdeb.cfg index 866b0d4d..de1c2044 100644 --- a/stdeb.cfg +++ b/stdeb.cfg @@ -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