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

[21882] Bump version to 2.2.0 #193

Merged
merged 3 commits into from
Oct 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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 2.0.x 1.4.x 1.2.x 1.0.x -->
<!-- @Mergifyio backport 2.1.x 2.0.x 1.4.x 1.2.x 1.0.x -->

<!-- If an issue is already opened, please uncomment next line with the corresponding issue number. -->
<!-- Fixes #(issue) -->
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
dest_branch:
- '2.1.x'
- '2.2.x'
- '2.x'
steps:
- name: Mirror action step
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/nightly-ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@ jobs:
run-tests: true
use-ccache: false

# python 2.1.x - fastdds 3.1.x
nightly-ubuntu-ci-2_1_x:
uses: eProsima/Fast-DDS-Python/.github/workflows/[email protected]
with:
# It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket:
# https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job.
os-version: 'ubuntu-22.04'
label: 'nightly-ubuntu-ci-2.1.x-3.1.x'
fastdds-python-branch: '2.1.x'
fastdds-branch: '3.1.x'
run-build: true
run-tests: true
use-ccache: false

# python 2.0.x - fastdds 3.0.x
nightly-ubuntu-ci-2_0_x:
uses: eProsima/Fast-DDS-Python/.github/workflows/[email protected]
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/nightly-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ jobs:
run-build: true
run-tests: true

# python 2.1.x - fastdds 3.1.x
nightly-windows-ci-2_1_x:
uses: eProsima/Fast-DDS-Python/.github/workflows/[email protected]
with:
os-version: 'windows-2019'
vs-toolset: 'v142'
label: 'nightly-windows-v142-ci-2.1.x-3.1.x'
fastdds-python-branch: '2.1.x'
fastdds-branch: '3.1.x'
run-build: true
run-tests: true

# python 2.0.x - fastdds 3.0.x
nightly-windows-ci-2_0_x:
uses: eProsima/Fast-DDS-Python/.github/workflows/[email protected]
Expand Down
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 2.1.0)
project(fastdds_python VERSION 2.2.0)

# Set BUILD_TESTING to OFF by default.
if(NOT BUILD_TESTING)
Expand Down
Loading