From c9ac4ee6b7739609a7e336918b9be025279f145b Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 11 Oct 2021 10:01:52 -0700 Subject: [PATCH] Bump main to 9.0.0~pre1 (#187) Signed-off-by: Louise Poubel --- CMakeLists.txt | 2 +- Changelog.md | 6 +++++- tutorials/cppgetstarted.md | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7910719..ff0a240b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(ignition-msgs8 VERSION 8.0.0) +project(ignition-msgs9 VERSION 9.0.0) #============================================================================ # Find ignition-cmake diff --git a/Changelog.md b/Changelog.md index 9f3d9d0a..8547a383 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,10 @@ +## Ignition Msgs 9.x + +### Ignition Msgs 9.0.0 (202x-xx-xx) + ## Ignition Msgs 8.x -### Ignition Msgs 8.0.0 (2021-09-xx) +### Ignition Msgs 8.0.0 (2021-09-28) 1. scene.proto: add shadow_caster_material_name * [Pull request #179](https://github.com/ignitionrobotics/ign-msgs/pull/179) diff --git a/tutorials/cppgetstarted.md b/tutorials/cppgetstarted.md index 10aded46..a079166a 100644 --- a/tutorials/cppgetstarted.md +++ b/tutorials/cppgetstarted.md @@ -62,7 +62,7 @@ To compile the code create a `CMakeLists.txt`: cmake_minimum_required(VERSION 2.8 FATAL_ERROR) # Find the Ignition msgs library -find_package(ignition-msgs8 QUIET REQUIRED) +find_package(ignition-msgs9 QUIET REQUIRED) add_executable(ignition-msgs-example main.cc) target_link_libraries(ignition-msgs-example ${IGNITION-MSGS_LIBRARIES})