Skip to content

Commit d414772

Browse files
committed
preparing release
1 parent 57a70d2 commit d414772

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

CHANGELOG.rst

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

5+
Forthcoming
6+
-----------
7+
* use PImpl in multiple classes
8+
* updated FileLogger2
9+
* better error messages
10+
* blackboard refactoring to fix buggy _autoremap
11+
* improved support for default values
12+
* fix error and add nodiscard
13+
* Fix `#580 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/580>`_ : more informative error when not specializing BT::toStr
14+
* add builtin models to WriteTreeToXML
15+
* add simple example to generate logs
16+
* add Sleep Node
17+
* Fix `#271 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/271>`_: better error message
18+
* remove EOL ros2 from CI
19+
* Contributors: Davide Faconti
20+
521
4.2.1 (2023-06-07)
622
------------------
723
* Fix `#570 <https://github.com/BehaviorTree/BehaviorTree.CPP/issues/570>`_: string_view set in blackboard

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.2.0 LANGUAGES C CXX)
3+
project(behaviortree_cpp VERSION 4.3.0 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}")

README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
![License MIT](https://img.shields.io/github/license/BehaviorTree/BehaviorTree.CPP?color=blue)
2-
![Version](https://img.shields.io/badge/version-4.2-blue.svg)
2+
![Version](https://img.shields.io/badge/version-4.3-blue.svg)
33
[![conan Ubuntu](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/cmake_ubuntu.yml/badge.svg)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/cmake_ubuntu.yml)
44
[![conan Windows](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/cmake_windows.yml/badge.svg)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions/workflows/cmake_windows.yml)
55
[![ros1](https://github.com/BehaviorTree/BehaviorTree.CPP/workflows/ros1/badge.svg?branch=master)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions?query=workflow%3Aros1)
66
[![ros2](https://github.com/BehaviorTree/BehaviorTree.CPP/workflows/ros2/badge.svg?branch=master)](https://github.com/BehaviorTree/BehaviorTree.CPP/actions?query=workflow%3Aros2)
77

8-
# BehaviorTree.CPP 4.2
8+
# BehaviorTree.CPP 4.3
99

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

@@ -99,11 +99,9 @@ You can contact the main author dfaconti@aurynrobotics.com to discuss your use c
9999

100100
The MIT License (MIT)
101101

102-
Copyright (c) 2014-2018 Michele Colledanchise
103-
104-
Copyright (c) 2018-2019 Davide Faconti, Eurecat
105-
106102
Copyright (c) 2019-2023 Davide Faconti
103+
Copyright (c) 2018-2019 Davide Faconti, Eurecat
104+
Copyright (c) 2014-2018 Michele Colledanchise
107105

108106
Permission is hereby granted, free of charge, to any person obtaining a copy
109107
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)