Skip to content

Commit e8e877d

Browse files
committed
2.2.2
1 parent b329244 commit e8e877d

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Release Notes
33

44
Forthcoming
55
-----------
6+
* ...
7+
8+
2.2.2 (2023-01-28)
9+
------------------
610
* [docs] 2.2.x release documentation, bugfix for graphviz on read-the-docs, `#400 <https://github.com/splintered-reality/py_trees/pull/400>`_
711

812
2.2.1 (2023-01-28)

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.1</version>
6+
<version>2.2.2</version>
77
<description>
88
Pythonic implementation of behaviour trees.
99
</description>

py_trees/demos/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Guidelines
2+
3+
Each module here is a self-contained code sample for one of the demo scripts.
4+
That means there is a fair bit of copy and paste happening, but that is an
5+
intentional decision to ensure each demo script is self-contained and easy
6+
for beginners to follow and/or copy-paste from.
7+
8+
Keep this in mind when adding additional programs.

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.1"
17+
__version__ = "2.2.2"

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.1"
3+
version = "2.2.2"
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.1",
23+
version="2.2.2",
2424
packages=find_packages(exclude=["tests*", "docs*"]),
2525
package_data={"py_trees": ["py.typed"]},
2626
install_requires=install_requires,

0 commit comments

Comments
 (0)