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(