diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..d26b0adb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,44 @@ + + + + + +## Description + + + + + + + + + + + + + + +## Contributor Checklist + +- [ ] Commit messages follow the project guidelines. +- [ ] Code builds and tests pass locally. +- [ ] 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. +- [ ] CI passes without warnings or errors. diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index b6d5fe60..ec24b8a0 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: dest_branch: - - '1.4.x' + - '2.0.x' steps: - name: Mirror action step id: mirror diff --git a/.github/workflows/test.meta b/.github/workflows/test.meta index 1271f248..fbb10a44 100644 --- a/.github/workflows/test.meta +++ b/.github/workflows/test.meta @@ -1,17 +1,8 @@ -{ - "names": - { - "fastrtps": - { - "cmake-args": [ - "-DSECURITY=ON" - ] - }, - "fastdds_python": - { - "cmake-args": [ - "-DBUILD_TESTING=ON" - ] - } - } -} +names: + fastrtps: + cmake-args: + - "-DSECURITY=ON" + fastdds_python: + cmake-args: + - "-DBUILD_TESTING=ON" + diff --git a/fastdds_python/CMakeLists.txt b/fastdds_python/CMakeLists.txt index 19d866c0..2a418f23 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 2.0.0) # Set BUILD_TESTING to OFF by default. if(NOT BUILD_TESTING)