Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20414] Bump version to 2.0.0 #98

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!-- Provide a general summary of your changes in the Title above -->
<!-- It must be meaningful and coherent with the changes -->

<!--
If this PR is still a Work in Progress [WIP], please open it as DRAFT.
Please consider if any label should be added to this PR.
-->

## Description
<!--
Describe changes in detail.
If several features/bug fixes are included with these changes, please consider opening separated pull requests.
-->

<!--
In case of bug fixes, please provide the list of supported branches where this fix should be also merged.
Please uncomment following line, adjusting the corresponding target branches for the backport.
-->
<!-- @Mergifyio backport 1.4.x 1.3.x 1.2.x 1.1.x -->

<!-- If an issue is already opened, please uncomment next line with the corresponding issue number. -->
<!-- Fixes #(issue) -->

<!-- In case the changes are built over a previous pull request, please uncomment next line. -->
<!-- This PR depends on #(PR) and must be merged after that one. -->

<!-- In case the changes are related to an implementation PR, please uncomment the next lines. -->
<!--
Related implementation PR:
* eProsima/Fast-DDS#(PR)
-->

## Contributor Checklist

- [ ] Commit messages follow the project guidelines. <!-- External contributors should sign the DCO. Fast DDS python developers must also refer to the internal Redmine task. -->
- [ ] 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.
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
dest_branch:
- '1.4.x'
- '2.0.x'
steps:
- name: Mirror action step
id: mirror
Expand Down
25 changes: 8 additions & 17 deletions .github/workflows/test.meta
Original file line number Diff line number Diff line change
@@ -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"

2 changes: 1 addition & 1 deletion fastdds_python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down