Skip to content

Commit fd3ea6d

Browse files
authored
2.3.0 (#459)
1 parent 7760eec commit fd3ea6d

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
Release Notes
22
=============
33

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

821
2.2.3 (2023-02-08)
922
------------------

package.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@
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.3</version>
6+
<version>2.3.0</version>
77
<description>
88
Pythonic implementation of behaviour trees.
99
</description>
10-
<author>Daniel Stonier</author>
10+
11+
<author email="[email protected]">Daniel Stonier</author>
1112
<author>Michal Staniaszek</author>
1213
<author>Naveed Usmani</author>
1314

1415
<maintainer email="[email protected]">Daniel Stonier</maintainer>
16+
<maintainer email="[email protected]">Sebastian Castro</maintainer>
1517

1618
<license>BSD</license>
1719

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
# Keep them in sync.
1919
d = setup(
2020
name="py_trees",
21-
version="2.2.3",
21+
version="2.3.0",
2222
packages=find_packages(exclude=["tests*", "docs*"]),
2323
package_data={"py_trees": ["py.typed"]},
2424
install_requires=install_requires,
2525
author="Daniel Stonier, Naveed Usmani, Michal Staniaszek",
26-
maintainer="Daniel Stonier <[email protected]>",
26+
maintainer="Daniel Stonier <[email protected]>, Sebastian Castro <[email protected]>",
2727
url="https://github.com/splintered-reality/py_trees",
2828
keywords="behaviour-trees",
2929
zip_safe=True,

0 commit comments

Comments
 (0)