From 7a38386699532cc8713e979561d289fac16e8354 Mon Sep 17 00:00:00 2001 From: Pravin-Dangol Date: Wed, 8 Jan 2025 10:39:45 -0800 Subject: [PATCH 1/6] ci.yml: run cppcheck, cpplint on noble --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d707b847..e2692986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: uses: gazebo-tooling/action-gz-ci@jammy with: codecov-enabled: true - cppcheck-enabled: true - cpplint-enabled: true doxygen-enabled: true noble-ci: runs-on: ubuntu-latest @@ -32,3 +30,6 @@ jobs: - name: Compile and test id: ci uses: gazebo-tooling/action-gz-ci@noble + with: + cppcheck-enabled: true + cpplint-enabled: true From 3b6175d6e9584f504a4486ae66e595075c244dd2 Mon Sep 17 00:00:00 2001 From: Pravin-Dangol Date: Wed, 8 Jan 2025 10:39:45 -0800 Subject: [PATCH 2/6] ci.yml: run cppcheck, cpplint on noble Signed-off-by: Pravin Dangol --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d707b847..e2692986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: uses: gazebo-tooling/action-gz-ci@jammy with: codecov-enabled: true - cppcheck-enabled: true - cpplint-enabled: true doxygen-enabled: true noble-ci: runs-on: ubuntu-latest @@ -32,3 +30,6 @@ jobs: - name: Compile and test id: ci uses: gazebo-tooling/action-gz-ci@noble + with: + cppcheck-enabled: true + cpplint-enabled: true From e6c4ddb105b5589954e9698de471c499fa7d7e32 Mon Sep 17 00:00:00 2001 From: Ian Chen Date: Wed, 9 Oct 2024 14:07:24 -0700 Subject: [PATCH 3/6] Fix bash completion script install path (#469) Signed-off-by: Ian Chen Signed-off-by: Pravin-Dangol --- core/cmd/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cmd/CMakeLists.txt b/core/cmd/CMakeLists.txt index 6e1230e1..736f537e 100644 --- a/core/cmd/CMakeLists.txt +++ b/core/cmd/CMakeLists.txt @@ -34,4 +34,4 @@ install( FILES ${CMAKE_CURRENT_BINARY_DIR}/msgs${PROJECT_VERSION_MAJOR}.bash_completion.sh DESTINATION - ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/gz/gz${GZ_TOOLS_VER}.completion.d) + ${CMAKE_INSTALL_DATAROOTDIR}/gz/gz${GZ_TOOLS_VER}.completion.d) From 69d2452cfe7b0ba0b1872a354644c90224abafb3 Mon Sep 17 00:00:00 2001 From: Pravin-Dangol Date: Wed, 8 Jan 2025 10:39:45 -0800 Subject: [PATCH 4/6] ci.yml: run cppcheck, cpplint on noble Signed-off-by: Pravin Dangol Signed-off-by: Pravin-Dangol --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d707b847..e2692986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: uses: gazebo-tooling/action-gz-ci@jammy with: codecov-enabled: true - cppcheck-enabled: true - cpplint-enabled: true doxygen-enabled: true noble-ci: runs-on: ubuntu-latest @@ -32,3 +30,6 @@ jobs: - name: Compile and test id: ci uses: gazebo-tooling/action-gz-ci@noble + with: + cppcheck-enabled: true + cpplint-enabled: true From f7d20a303dfa0c53a02fc51dcb8eb38f13351d97 Mon Sep 17 00:00:00 2001 From: Jose Luis Rivero Date: Thu, 10 Oct 2024 20:07:33 +0200 Subject: [PATCH 5/6] Bump to 11.0.1 release (#471) * Bumped to 11.0.1 Signed-off-by: Jose Luis Rivero * Update changelog Signed-off-by: Jose Luis Rivero --------- Signed-off-by: Jose Luis Rivero Signed-off-by: Pravin-Dangol --- CMakeLists.txt | 2 +- Changelog.md | 5 +++++ package.xml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9fe174a2..407e3dcb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(gz-msgs11 VERSION 11.0.0) +project(gz-msgs11 VERSION 11.0.1) #============================================================================ # Find gz-cmake diff --git a/Changelog.md b/Changelog.md index c8c00d23..9a161990 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ ## Gazebo Msgs 11.x +### Gazebo Msgs 11.0.1 (2024-10-10) + +1. Fix bash completion script install path + * [Pull request #469](https://github.com/gazebosim/gz-msgs/pull/469) + ### Gazebo Msgs 11.0.0 (2024-09-25) 1. **Baseline:** this includes all changes from 10.3.0 and earlier. diff --git a/package.xml b/package.xml index 7a673e11..ca1d50bd 100644 --- a/package.xml +++ b/package.xml @@ -1,7 +1,7 @@ gz-msgs11 - 11.0.0 + 11.0.1 Gazebo Messages: Protobuf messages and functions for robot applications Carlos Agüero Apache License 2.0 From 2e373a119173b805999355385d66d1f25e8da7f4 Mon Sep 17 00:00:00 2001 From: Pravin-Dangol Date: Wed, 8 Jan 2025 11:58:44 -0800 Subject: [PATCH 6/6] ci.yml: run cppcheck, cpplint on noble --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d707b847..e2692986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: uses: gazebo-tooling/action-gz-ci@jammy with: codecov-enabled: true - cppcheck-enabled: true - cpplint-enabled: true doxygen-enabled: true noble-ci: runs-on: ubuntu-latest @@ -32,3 +30,6 @@ jobs: - name: Compile and test id: ci uses: gazebo-tooling/action-gz-ci@noble + with: + cppcheck-enabled: true + cpplint-enabled: true