From e8e877d2515bd2a483b384f911c07280005022c4 Mon Sep 17 00:00:00 2001 From: Daniel Stonier Date: Sat, 28 Jan 2023 17:06:36 -0500 Subject: [PATCH] 2.2.2 --- CHANGELOG.rst | 4 ++++ package.xml | 2 +- py_trees/demos/README.md | 8 ++++++++ py_trees/version.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 py_trees/demos/README.md diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c7baf7c..4e56fd3a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_ 2.2.1 (2023-01-28) diff --git a/package.xml b/package.xml index 37793d03..14da0c23 100644 --- a/package.xml +++ b/package.xml @@ -3,7 +3,7 @@ py_trees - 2.2.1 + 2.2.2 Pythonic implementation of behaviour trees. diff --git a/py_trees/demos/README.md b/py_trees/demos/README.md new file mode 100644 index 00000000..3647914d --- /dev/null +++ b/py_trees/demos/README.md @@ -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. \ No newline at end of file diff --git a/py_trees/version.py b/py_trees/version.py index ad301a7b..e81a536d 100644 --- a/py_trees/version.py +++ b/py_trees/version.py @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 309cfd5a..556eefae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] diff --git a/setup.py b/setup.py index 5e224754..4c7e405d 100755 --- a/setup.py +++ b/setup.py @@ -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,