Skip to content

Commit 876b89d

Browse files
authoredMay 20, 2024··
Prepare for 10.2.0 release (gazebosim#443)
Signed-off-by: Michael Carroll <mjcarroll@intrinsic.ai>
1 parent 3eae409 commit 876b89d

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed
 

‎CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
33
#============================================================================
44
# Initialize the project
55
#============================================================================
6-
project(gz-msgs10 VERSION 10.1.2)
6+
project(gz-msgs10 VERSION 10.2.0)
77

88
#============================================================================
99
# Find gz-cmake
@@ -25,7 +25,7 @@ gz_configure_project(VERSION_SUFFIX
2525
#============================================================================
2626

2727
# Cross-compilation related options
28-
# In a cross-compilation scenario, it is possible that the
28+
# In a cross-compilation scenario, it is possible that the
2929
# ${PROJECT_NAME}_protoc_plugin
3030
# generator compiled for the target machine cannot be used to generate
3131
# the C++ code corresponding to the .proto definition.
@@ -34,7 +34,7 @@ gz_configure_project(VERSION_SUFFIX
3434
# To avoid, that the following options can be used as follows.
3535
# First of all, gz-msgs is compiled targeting the host machine, and in the
3636
# build targeting the host, ensuring that the ${PROJECT_NAME}_protoc_plugin
37-
# is installed in <host_install_prefix>/bin/${PROJECT_NAME}_protoc_plugin .
37+
# is installed in <host_install_prefix>/bin/${PROJECT_NAME}_protoc_plugin .
3838
# Then, the same version of gz-msgs
3939
# can be cross-compiled, and in the cross-compilation build the location of the
4040
# host gz_msgs_gen is specified via the GZ_MSGS_GEN_EXECUTABLE CMake option.
@@ -43,9 +43,9 @@ gz_configure_project(VERSION_SUFFIX
4343
# to the build appropriate CMake options:
4444
# > cmake -Dgz-msgs<MajVer>_PROTO_GENERATOR_PLUGIN=gz-msgs<MajVer>_protoc_plugin
4545
# > -Dgz-msgs<MajVer>_PROTOC_EXECUTABLE=<host_install_prefix>/bin/protoc
46-
# > -Dgz-msgs<MajVer>_PYTHON_INTERPRETER=<host_install_prefix>/bin/python
46+
# > -Dgz-msgs<MajVer>_PYTHON_INTERPRETER=<host_install_prefix>/bin/python
4747
# > ..
48-
# In case the gz-msgs CMake functions are used also in downstream projects,
48+
# In case the gz-msgs CMake functions are used also in downstream projects,
4949
# the same variables can be passed when configuring the downsream projects.
5050

5151
set(

‎Changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
## Gazebo Msgs 10.x
22

3+
### Gazebo Msgs 10.2.0 (2024-05-17)
4+
5+
1. CameraTrack message for advanced tracking and following.
6+
* [Pull request #440](https://github.com/gazebosim/gz-msgs/pull/440)
7+
8+
1. Update minimum version of gz-cmake3
9+
* [Pull request #439](https://github.com/gazebosim/gz-msgs/pull/439)
10+
11+
1. bazel: lint
12+
* [Pull request #438](https://github.com/gazebosim/gz-msgs/pull/438)
13+
14+
1. Add package.xml
15+
* [Pull request #432](https://github.com/gazebosim/gz-msgs/pull/432)
16+
317
### Gazebo Msgs 10.1.2 (2024-04-08)
418

519
1. Use relative install paths for gz tool data and extra cmake files

‎package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>gz-msgs10</name>
4-
<version>10.1.2</version>
4+
<version>10.2.0</version>
55
<description>Gazebo Messages: Protobuf messages and functions for robot applications</description>
66
<maintainer email="caguero@openrobotics.org">Carlos Agüero</maintainer>
77
<license>Apache License 2.0</license>

0 commit comments

Comments
 (0)
Please sign in to comment.