From c487e30cc884056fdf508f79a39e8adca25d5992 Mon Sep 17 00:00:00 2001 From: Eduardo Ponz Segrelles Date: Mon, 25 Mar 2024 08:02:12 +0100 Subject: [PATCH] Bump version to 1.4.1 (#110) * Refs #20677: Bump version to 1.4.1 Signed-off-by: EduPonz * Refs #20677: Add PR template Signed-off-by: EduPonz * Refs #20677: Remove IDL-parse from repos file Signed-off-by: EduPonz --------- Signed-off-by: EduPonz --- .github/pull_request_template.md | 41 ++++++++++++++++++++++++++++++++ fastdds_python.repos | 4 ---- fastdds_python/CMakeLists.txt | 2 +- 3 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..cb2ff2e9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,41 @@ + + + + + +## Description + + + + + + + + + + + +## Contributor Checklist + +- [ ] Commit messages follow the project guidelines. +- [ ] Tests that thoroughly check the new feature have been added/Regression tests checking the bug and its fix have been added; the added tests pass locally +- [ ] Changes are API compatible. +- [ ] Applicable backports have been included in the description. + +## Reviewer Checklist + +- [ ] The PR has a milestone assigned. +- [ ] The title and description correctly express the PR's purpose. +- [ ] Check contributor checklist is correct. +- [ ] Check CI results: changes do not issue any warning. +- [ ] Check CI results: failing tests are unrelated with the changes. diff --git a/fastdds_python.repos b/fastdds_python.repos index 3c54fb58..0fe5ff75 100644 --- a/fastdds_python.repos +++ b/fastdds_python.repos @@ -19,7 +19,3 @@ repositories: type: git url: https://github.com/eProsima/Fast-DDS-Gen.git version: master - fastddsgen/thirdparty/idl-parser: - type: git - url: https://github.com/eProsima/IDL-Parser.git - version: master diff --git a/fastdds_python/CMakeLists.txt b/fastdds_python/CMakeLists.txt index 19d866c0..fd0ebfea 100644 --- a/fastdds_python/CMakeLists.txt +++ b/fastdds_python/CMakeLists.txt @@ -24,7 +24,7 @@ if(POLICY CMP0086) cmake_policy(SET CMP0086 NEW) endif() -project(fastdds_python VERSION 1.4.0) +project(fastdds_python VERSION 1.4.1) # Set BUILD_TESTING to OFF by default. if(NOT BUILD_TESTING)