Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump main to 10.0.0~pre1 #292

Merged
merged 2 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-msgs9 VERSION 9.0.0)
project(gz-msgs10 VERSION 10.0.0)

#============================================================================
# Find gz-cmake
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Gazebo Msgs 10.x

### Gazebo Msgs 10.0.0 (202x-xx-xx)


## Gazebo Msgs 9.x

### Gazebo Msgs 9.0.0 (202x-xx-xx)
Expand Down
2 changes: 1 addition & 1 deletion tutorials/cppgetstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To compile the code create a `CMakeLists.txt`:
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)

# Find the Gazebo msgs library
find_package(gz-msgs9 QUIET REQUIRED)
find_package(gz-msgs10 QUIET REQUIRED)

add_executable(gz-msgs-example main.cc)
target_link_libraries(gz-msgs-example ${GZ-MSGS_LIBRARIES})
Expand Down