Skip to content

Commit 9cec25a

Browse files
authored
Bump main to launch 9.0.0~pre1 (#280)
Signed-off-by: Carlos Agüero <caguero@openrobotics.org>
1 parent d40dfe2 commit 9cec25a

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
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-launch8 VERSION 8.0.0)
6+
project(gz-launch9 VERSION 9.0.0)
77

88
#============================================================================
99
# Find gz-cmake
@@ -17,7 +17,7 @@ set(GZ_CMAKE_VER ${gz-cmake4_VERSION_MAJOR})
1717
set(CMAKE_CXX_STANDARD 17)
1818
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1919

20-
gz_configure_project(VERSION_SUFFIX)
20+
gz_configure_project(VERSION_SUFFIX pre1)
2121

2222
#============================================================================
2323
# 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 Launch 9.x
2+
3+
### Gazebo Launch 9.0.0 (20XX-XX-XX)
4+
15
## Gazebo Launch 8.x
26

37
### Gazebo Launch 8.0.0 (2024-09-25)

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-launch8</name>
5-
<version>8.0.0</version>
4+
<name>gz-launch9</name>
5+
<version>9.0.0</version>
66
<description>Gazebo Launch : Run and manage programs and plugins</description>
77
<maintainer email="natekoenig@gmail.com">Nate Koenig</maintainer>
88
<license>Apache License 2.0</license>

src/cmd/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ install(
8585
#===============================================================================
8686
# Generate the ruby script for internal testing.
8787
# Note that the major version of the library is included in the name.
88-
# Ex: cmdlaunch8.rb
88+
# Ex: cmdlaunch9.rb
8989

9090
set(cmd_script_generated_test "${CMAKE_BINARY_DIR}/test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb")
9191
set(cmd_script_configured_test "${CMAKE_CURRENT_BINARY_DIR}/test_cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb.configured")
@@ -109,7 +109,7 @@ file(GENERATE
109109
# Used for the installed version.
110110
# Generate the ruby script that gets installed.
111111
# Note that the major version of the library is included in the name.
112-
# Ex: cmdlaunch8.rb
112+
# Ex: cmdlaunch9.rb
113113
set(cmd_script_generated "${CMAKE_CURRENT_BINARY_DIR}/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb")
114114
set(cmd_script_configured "${cmd_script_generated}.configured")
115115

@@ -130,7 +130,7 @@ set(gz_library_path "${CMAKE_BINARY_DIR}/test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESI
130130

131131
# Generate a configuration file for internal testing.
132132
# Note that the major version of the library is included in the name.
133-
# Ex: launch8.yaml
133+
# Ex: launch9.yaml
134134
configure_file(
135135
"${GZ_DESIGNATION}.yaml.in"
136136
"${CMAKE_CURRENT_BINARY_DIR}/${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.yaml.configured" @ONLY)
@@ -144,7 +144,7 @@ set(gz_library_path "${CMAKE_INSTALL_PREFIX}/lib/ruby/gz/cmd${GZ_DESIGNATION}${P
144144

145145
# Generate the configuration file that is installed.
146146
# Note that the major version of the library is included in the name.
147-
# Ex: launch8.yaml
147+
# Ex: launch9.yaml
148148
configure_file(
149149
"${GZ_DESIGNATION}.yaml.in"
150150
"${CMAKE_CURRENT_BINARY_DIR}/${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.yaml" @ONLY)

0 commit comments

Comments
 (0)