From adb150f5533526816af9609f83a4045b601db66e Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 8 Aug 2022 13:43:14 -0700 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=20Bump=20main=20to=203.0.?= =?UTF-8?q?0~pre1=20(#76)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Louise Poubel --- CMakeLists.txt | 2 +- Changelog.md | 4 ++++ examples/using_cli/CMakeLists.txt | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a5029db..c39385a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(gz-utils2 VERSION 2.0.0) +project(gz-utils3 VERSION 3.0.0) #============================================================================ # Find gz-cmake diff --git a/Changelog.md b/Changelog.md index 9b85251..ec371e3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +## Gazebo Utils 3.x + +## Gazebo Utils 3.0.0 (20XX-XX-XX) + ## Gazebo Utils 2.x ## Gazebo Utils 2.0.0 (20XX-XX-XX) diff --git a/examples/using_cli/CMakeLists.txt b/examples/using_cli/CMakeLists.txt index f7e7c69..a1a5293 100644 --- a/examples/using_cli/CMakeLists.txt +++ b/examples/using_cli/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) project(gz-utils-cli-demo) # Find the Gazebo Libraries used directly by the example -find_package(gz-utils2 REQUIRED COMPONENTS cli) -set(GZ_UTILS_VER ${gz-utils2_VERSION_MAJOR}) +find_package(gz-utils3 REQUIRED COMPONENTS cli) +set(GZ_UTILS_VER ${gz-utils3_VERSION_MAJOR}) add_executable(${PROJECT_NAME} main.cc) target_link_libraries(