Skip to content

Commit 730bb65

Browse files
committed
prepare release
1 parent 18a5391 commit 730bb65

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
# See https://github.com/pre-commit/pre-commit
1515

16-
exclude: ^3rdparty/|3rdparty|^include/behaviortree_cpp/contrib/
16+
exclude: ^3rdparty/|3rdparty|^include/behaviortree_cpp/contrib/|CHANGELOG.rst
1717
repos:
1818

1919
# Standard hooks

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22
Changelog for package behaviortree_cpp
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* fix issue in destruction order
8+
* fix memory leak
9+
* fix thread safety issues
10+
* Improve error message
11+
* Leave a note for posterity
12+
* Fix windows builds
13+
* Do not fail fast. We want results of both sanitizer runs
14+
* Combine sanitizer actions into a single file
15+
* use gtest_discover_tests to regiester the unit tests
16+
this modern approach registers many individual tests instead of a single monolitic test
17+
so if one fails the rest continue running which allows the developer to flag multiple
18+
failing tests on a single run
19+
It also speeds up testing since tests run in parallel
20+
* Add support for sanitizers including some GHAs
21+
* Remove unused conan.cmake (`#1016 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/1016>`_)
22+
* Improve handling of dependencies (`#1012 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/1012>`_)
23+
* update tinyxml to version 11.0
24+
* fix potential compilation errors
25+
* compile for c++ 17 (`#1013 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/1013>`_)
26+
* Contributors: Davide Faconti, Eric Riff
27+
528
4.7.3 (2025-10-01)
629
------------------
730
* remove cpp-sqlite

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.16.3) # version on Ubuntu Focal
22

3-
project(behaviortree_cpp VERSION 4.7.3 LANGUAGES C CXX)
3+
project(behaviortree_cpp VERSION 4.8.0 LANGUAGES C CXX)
44

55
# create compile_commands.json
66
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![ros2](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/ros2.yaml/badge.svg)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/ros2.yaml)
55
[![pixi (Conda)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/pixi.yaml/badge.svg)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/pixi.yaml)
66

7-
# BehaviorTree.CPP 4.7
7+
# BehaviorTree.CPP 4.8
88

99
<p align="center"><img width=350 src="animated.svg"></p>
1010

0 commit comments

Comments
 (0)