Skip to content

Commit 5569e6f

Browse files
authored
Bump main to sensors 10.0.0~pre1 (#476)
* Bump main to sensors 10.0.0~pre1 Signed-off-by: Carlos Agüero <[email protected]> Signed-off-by: Ian Chen <[email protected]>
1 parent ae8713e commit 5569e6f

File tree

8 files changed

+21
-17
lines changed

8 files changed

+21
-17
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
33
#============================================================================
44
# Initialize the project
55
#============================================================================
6-
project(gz-sensors9 VERSION 9.0.0)
6+
project(gz-sensors10 VERSION 10.0.0)
77

88
#============================================================================
99
# Find gz-cmake
@@ -16,7 +16,7 @@ find_package(gz-cmake4 REQUIRED)
1616
set(CMAKE_CXX_STANDARD 17)
1717
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1818

19-
gz_configure_project(VERSION_SUFFIX)
19+
gz_configure_project(VERSION_SUFFIX pre1)
2020

2121
#============================================================================
2222
# Set project-specific options

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Gazebo Sensors 10
2+
3+
### Gazebo Sensors 10.0.0 (20XX-XX-XX)
4+
15
## Gazebo Sensors 9
26

37
### Gazebo Sensors 9.0.0 (2024-09-25)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
Build | Status
1111
-- | --
12-
Test coverage | [![codecov](https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9/graph/badge.svg)](https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9)
13-
Ubuntu Noble | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9-noble-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9-noble-amd64)
14-
Homebrew | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9-homebrew-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9-homebrew-amd64)
15-
Windows | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-9-win)](https://build.osrfoundation.org/job/gz_sensors-9-win/)
12+
Test coverage | [![codecov](https://codecov.io/gh/gazebosim/gz-sensors/tree/main/graph/badge.svg)](https://codecov.io/gh/gazebosim/gz-sensors/tree/main)
13+
Ubuntu Noble | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main-noble-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-main-noble-amd64)
14+
Homebrew | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main-homebrew-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-main-homebrew-amd64)
15+
Windows | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-main-win)](https://build.osrfoundation.org/job/gz_sensors-main-win/)
1616

1717
Gazebo Sensors, a component of [Gazebo](https://gazebosim.org),
1818
provides numerous sensor models

examples/custom_sensor/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
33
project(odometer)
44

55
find_package(gz-cmake4 REQUIRED)
6-
find_package(gz-sensors9 REQUIRED)
6+
find_package(gz-sensors10 REQUIRED)
77

88
add_library(${PROJECT_NAME} SHARED Odometer.cc)
99
target_link_libraries(${PROJECT_NAME}
10-
PUBLIC gz-sensors9::gz-sensors9)
10+
PUBLIC gz-sensors10::gz-sensors10)

examples/imu_noise/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
22
project(gz-sensors-noise-demo)
33

44
# Find the Gazebo Libraries used directly by the example
5-
find_package(gz-sensors9 REQUIRED)
5+
find_package(gz-sensors10 REQUIRED)
66

77
add_executable(sensor_noise main.cc)
8-
target_link_libraries(sensor_noise PUBLIC gz-sensors9)
8+
target_link_libraries(sensor_noise PUBLIC gz-sensors10)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
22
project(loop_sensor)
33

4-
find_package(gz-sensors9 REQUIRED
4+
find_package(gz-sensors10 REQUIRED
55
# Find built-in sensors
66
COMPONENTS
77
altimeter
@@ -12,10 +12,10 @@ add_subdirectory(../custom_sensor odometer)
1212

1313
add_executable(${PROJECT_NAME} main.cc)
1414
target_link_libraries(${PROJECT_NAME} PUBLIC
15-
gz-sensors9::gz-sensors9
15+
gz-sensors10::gz-sensors10
1616

1717
# Link to custom sensors
1818
odometer
1919

2020
# Link to built-in sensors
21-
gz-sensors9::altimeter)
21+
gz-sensors10::altimeter)

examples/save_image/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(gz-sensors-camera-demo)
33

44
# Find the Gazebo Libraries used directly by the example
55
find_package(gz-rendering9 REQUIRED OPTIONAL_COMPONENTS ogre ogre2)
6-
find_package(gz-sensors9 REQUIRED COMPONENTS rendering camera)
6+
find_package(gz-sensors10 REQUIRED COMPONENTS rendering camera)
77

88
if (TARGET gz-rendering9::ogre)
99
add_definitions(-DWITH_OGRE)
@@ -14,4 +14,4 @@ endif()
1414

1515
add_executable(save_image main.cc)
1616
target_link_libraries(save_image PUBLIC
17-
gz-sensors9::camera)
17+
gz-sensors10::camera)

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
4-
<name>gz-sensors9</name>
5-
<version>9.0.0</version>
4+
<name>gz-sensors10</name>
5+
<version>10.0.0</version>
66
<description>Gazebo Sensors : Sensor models for simulation</description>
77
<maintainer email="[email protected]">Ian Chen</maintainer>
88
<license>Apache License 2.0</license>

0 commit comments

Comments
 (0)