Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.3.0 #459

Merged
merged 3 commits into from
Jan 11, 2025
Merged

2.3.0 #459

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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="d.stonier@gmail.com">Daniel Stonier</author>
<author>Michal Staniaszek</author>
<author>Naveed Usmani</author>

<maintainer email="d.stonier@gmail.com">Daniel Stonier</maintainer>
<maintainer email="sebas.a.castro@gmail.com">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 <d.stonier@gmail.com>",
maintainer="Daniel Stonier <d.stonier@gmail.com>, Sebastian Castro <sebas.a.castro@gmail.com>",
url="https://github.com/splintered-reality/py_trees",
keywords="behaviour-trees",
zip_safe=True,
Expand Down