Skip to content

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stonier committed Feb 9, 2023
1 parent 0b3c5d1 commit e7644b3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
},
"context": ".."
},
"extensions": [
"ms-python.python"
],
"remoteUser": "zen",
"workspaceMount": "source=${localWorkspaceFolder}/../..,target=/workspace,type=bind",
"workspaceFolder": "/workspace",
Expand All @@ -21,6 +18,18 @@
"DISPLAY": "${localEnv:DISPLAY}",
"QT_DEBUG_PLUGINS": "1"
},
"customizations": {
"vscode": {
"extensions": [
"bierner.github-markdown-preview",
"bungcip.better-toml",
"streetsidesoftware.code-spell-checker",
"lextudio.restructuredtext",
"ms-python.python",
"omnilib.ufmt"
]
}
},
"mounts": [
{
"source": "/tmp/.X11-unix",
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ Changelog

Forthcoming
-----------
* ...

2.2.0 (2023-02-08)
------------------
* [actions] pre-merge and push-ci-image actions, `#200 <https://github.com/splintered-reality/py_trees_ros/pull/200>`_
* [tests] bugfix explicit args and time float errors in tests, `#200 <https://github.com/splintered-reality/py_trees_ros/pull/200>`_
* [watchers] handle explicit args and memory details, `#196 <https://github.com/splintered-reality/py_trees_ros/pull/196>`_
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>py_trees_ros</name>
<version>2.1.1</version>
<version>2.2.0</version>
<description>
ROS2 extensions and behaviours for py_trees.
</description>
Expand Down
2 changes: 1 addition & 1 deletion py_trees_ros/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# Version
##############################################################################

__version__ = '2.1.1'
__version__ = '2.2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name=package_name,
version='2.1.1', # also package.xml, doc/conf.py, py_trees_ros/version.py
version='2.2.0', # also package.xml, doc/conf.py, py_trees_ros/version.py
packages=find_packages(
exclude=['doc*', 'tests*', 'graveyard*', 'scripts*']
),
Expand Down

0 comments on commit e7644b3

Please sign in to comment.