Skip to content

Commit 715cb6a

Browse files
committed
2.2.3
1 parent 9bce189 commit 715cb6a

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ Release Notes
33

44
Forthcoming
55
-----------
6-
* [decorators] a passthrough for debugging and visualisation, `#407 <https://github.com/splintered-reality/py_trees/pull/407>`_
76
* ...
87

8+
2.2.3 (2023-02-08)
9+
------------------
10+
* [decorators] a passthrough for debugging and visualisation, `#407 <https://github.com/splintered-reality/py_trees/pull/407>`_
11+
912
2.2.2 (2023-01-28)
1013
------------------
1114
* [docs] 2.2.x release documentation, bugfix for graphviz on read-the-docs, `#400 <https://github.com/splintered-reality/py_trees/pull/400>`_

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44
<name>py_trees</name>
55
<!-- When updating, also update setup.py, version.py, pyproject.toml, package.xml -->
6-
<version>2.2.2</version>
6+
<version>2.2.3</version>
77
<description>
88
Pythonic implementation of behaviour trees.
99
</description>

py_trees/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# When changing, Also update setup.py and package.xml
1616
# TODO: use pkg_resources to fetch the version from setup.py
17-
__version__ = "2.2.2"
17+
__version__ = "2.2.3"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py_trees"
3-
version = "2.2.2"
3+
version = "2.2.3"
44
description = "pythonic implementation of behaviour trees"
55
authors = ["Daniel Stonier", "Naveed Usmani", "Michal Staniaszek"]
66
maintainers = ["Daniel Stonier <[email protected]>"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Keep them in sync.
2121
d = setup(
2222
name="py_trees",
23-
version="2.2.2",
23+
version="2.2.3",
2424
packages=find_packages(exclude=["tests*", "docs*"]),
2525
package_data={"py_trees": ["py.typed"]},
2626
install_requires=install_requires,

0 commit comments

Comments
 (0)