Skip to content

Commit

Permalink
2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stonier committed Jan 28, 2023
1 parent b329244 commit e8e877d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Release Notes

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

2.2.2 (2023-01-28)
------------------
* [docs] 2.2.x release documentation, bugfix for graphviz on read-the-docs, `#400 <https://github.com/splintered-reality/py_trees/pull/400>`_

2.2.1 (2023-01-28)
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package format="3">
<name>py_trees</name>
<!-- When updating, also update setup.py, version.py, pyproject.toml, package.xml -->
<version>2.2.1</version>
<version>2.2.2</version>
<description>
Pythonic implementation of behaviour trees.
</description>
Expand Down
8 changes: 8 additions & 0 deletions py_trees/demos/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Guidelines

Each module here is a self-contained code sample for one of the demo scripts.
That means there is a fair bit of copy and paste happening, but that is an
intentional decision to ensure each demo script is self-contained and easy
for beginners to follow and/or copy-paste from.

Keep this in mind when adding additional programs.
2 changes: 1 addition & 1 deletion py_trees/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

# When changing, Also update setup.py and package.xml
# TODO: use pkg_resources to fetch the version from setup.py
__version__ = "2.2.1"
__version__ = "2.2.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py_trees"
version = "2.2.1"
version = "2.2.2"
description = "pythonic implementation of behaviour trees"
authors = ["Daniel Stonier", "Naveed Usmani", "Michal Staniaszek"]
maintainers = ["Daniel Stonier <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Keep them in sync.
d = setup(
name="py_trees",
version="2.2.1",
version="2.2.2",
packages=find_packages(exclude=["tests*", "docs*"]),
package_data={"py_trees": ["py.typed"]},
install_requires=install_requires,
Expand Down

0 comments on commit e8e877d

Please sign in to comment.