Skip to content

Commit 6e3265b

Browse files
authored
Prepare for release v2.12.0 (#90)
* Refs #19490: bump to v2.12.0 Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com> * Refs #19490: update .repos dependencies Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com> * Refs #19490: dependencies minimum required version Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com> * Refs #19490: update CMake minimum version Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com> --------- Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com>
1 parent 041a527 commit 6e3265b

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
###############################################################################
1919
# CMake build rules for ShapesDemo
2020
###############################################################################
21-
cmake_minimum_required(VERSION 2.8.12)
21+
cmake_minimum_required(VERSION 3.22)
2222

2323

2424
file(READ version.pri SHAPESVERSION)
@@ -123,9 +123,10 @@ option(EPROSIMA_BUILD "Activate internal building" OFF)
123123
###############################################################################
124124
# Load external eProsima projects.
125125
###############################################################################
126-
set(FASTDDS_MIN_VERSION "2.5.1")
126+
set(FASTDDS_MIN_VERSION "2.12.0")
127+
set(FASTCDR_MIN_VERSION "2.0.0")
127128

128-
find_package(fastcdr REQUIRED)
129+
find_package(fastcdr ${FASTCDR_MIN_VERSION} REQUIRED)
129130
find_package(fastrtps ${FASTDDS_MIN_VERSION} REQUIRED)
130131

131132
# If ROS environment is not set, disable ROS features. If there's no TypeSupport for the ROS 2 type, disable them as well.

shapes-demo-ros2.repos

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ repositories:
66
fastcdr:
77
type: git
88
url: https://github.com/eProsima/Fast-CDR.git
9-
version: v1.1.0
9+
version: v2.0.0
1010
fastdds:
1111
type: git
1212
url: https://github.com/eProsima/Fast-DDS.git
13-
version: v2.11.2
13+
version: v2.12.0
1414
shapes-demo-typesupport:
1515
type: git
1616
url: https://github.com/eProsima/ShapesDemo-TypeSupport.git
1717
version: v1.0.0
1818
shapes-demo:
1919
type: git
2020
url: https://github.com/eProsima/ShapesDemo.git
21-
version: v2.11.2
21+
version: v2.12.0

shapes-demo.repos

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ repositories:
66
fastcdr:
77
type: git
88
url: https://github.com/eProsima/Fast-CDR.git
9-
version: v1.1.0
9+
version: v2.0.0
1010
fastdds:
1111
type: git
1212
url: https://github.com/eProsima/Fast-DDS.git
13-
version: v2.11.2
13+
version: v2.12.0
1414
shapes-demo:
1515
type: git
1616
url: https://github.com/eProsima/ShapesDemo.git
17-
version: v2.11.2
17+
version: v2.12.0

version.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SHAPESVERSION="2.11.2"
1+
SHAPESVERSION="2.12.0"
22

0 commit comments

Comments
 (0)