Skip to content

Commit

Permalink
2.3.0 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass authored Jan 11, 2025
1 parent 7760eec commit fd3ea6d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
Release Notes
=============

Forthcoming
-----------
* ...
2.3.0 (2025-01-11)
------------------
* [code] Fix CI and update to latest Ubuntu/Python versions (`#454 <https://github.com/splintered-reality/py_trees/issues/454>`_)
* [behaviours] Shorten line in docstring (`#450 <https://github.com/splintered-reality/py_trees/issues/450>`_)
* [docs] add ticking tree
* [composites] Reduce circulation when the parallel node policy is SuccessOnOne (`#440 <https://github.com/splintered-reality/py_trees/issues/440>`_)
* [docs] fix make target (`#430 <https://github.com/splintered-reality/py_trees/issues/430>`_)
* [composites] use typing.Sequence for children argument (`#436 <https://github.com/splintered-reality/py_trees/issues/436>`_)
* Improve timing of tick_tock() and allow stopping on terminal state (`#444 <https://github.com/splintered-reality/py_trees/issues/444>`_)
* [vscode] update extensions, set spell checking to UK
* [behaviours] add ProbabilisticBehaviour(Behaviour)
* [readme] consolidate development instructions
* [code] remove unused import
* [vscode] recommend extensions, especially devcontainers
* Contributors: Daniel Stonier, Efe Mert Demir, Nino Walker, Sebastian Castro, gitpushoriginmaster, wanfeng


2.2.3 (2023-02-08)
------------------
Expand Down
6 changes: 4 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
<package format="3">
<name>py_trees</name>
<!-- When updating, also update setup.py, version.py, pyproject.toml, package.xml -->
<version>2.2.3</version>
<version>2.3.0</version>
<description>
Pythonic implementation of behaviour trees.
</description>
<author>Daniel Stonier</author>

<author email="[email protected]">Daniel Stonier</author>
<author>Michal Staniaszek</author>
<author>Naveed Usmani</author>

<maintainer email="[email protected]">Daniel Stonier</maintainer>
<maintainer email="[email protected]">Sebastian Castro</maintainer>

<license>BSD</license>

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
# Keep them in sync.
d = setup(
name="py_trees",
version="2.2.3",
version="2.3.0",
packages=find_packages(exclude=["tests*", "docs*"]),
package_data={"py_trees": ["py.typed"]},
install_requires=install_requires,
author="Daniel Stonier, Naveed Usmani, Michal Staniaszek",
maintainer="Daniel Stonier <[email protected]>",
maintainer="Daniel Stonier <[email protected]>, Sebastian Castro <[email protected]>",
url="https://github.com/splintered-reality/py_trees",
keywords="behaviour-trees",
zip_safe=True,
Expand Down

0 comments on commit fd3ea6d

Please sign in to comment.