Skip to content

Commit c7d6f58

Browse files
committedMar 7, 2024
prepare release
1 parent d974b6b commit c7d6f58

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed
 

‎CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
Changelog for package behaviortree_cpp
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* bugfix: string to enum/integer/boolean in scripts
8+
* bug fix in scripting comparison
9+
* added more pretty-prints to demangler
10+
* fixes and checks in default values, based on PR `#773 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/773>`_
11+
* Initialize std::atomic_bool (`#772 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/772>`_)
12+
* Fix issue `#767 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/767>`_ and `#768 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/768>`_
13+
* updated default port syntax: "{=}"
14+
* new default port capability: blackbard entries
15+
* fix issue `#757 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/757>`_ : skipped nodes should not call post-condition ALWAYS
16+
* Merge pull request `#756 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/756>`_ from imere/imere-patch-1
17+
* fix(test): Typo in gtest_blackboard.cpp
18+
* Contributors: Davide Faconti, Lu Z, Marq Rasmussen
19+
520
4.5.1 (2024-01-23)
621
------------------
722
* Support enums and real numbers in Node Switch

‎CMakeLists.txt

+1-1
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.5.1 LANGUAGES C CXX)
3+
project(behaviortree_cpp VERSION 4.5.2 LANGUAGES C CXX)
44

55
set(CMAKE_CONFIG_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake")
66
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CONFIG_PATH}")

0 commit comments

Comments
 (0)
Please sign in to comment.