Skip to content

Commit 9895acd

Browse files
authored
Bump main to gz-plugin 4.0.0~pre1 (#155)
Signed-off-by: Carlos Agüero <caguero@openrobotics.org>
1 parent 326a684 commit 9895acd

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
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-plugin3 VERSION 3.0.0)
6+
project(gz-plugin4 VERSION 4.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()
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 Plugin 4.x
2+
3+
### Gazebo Plugin 4.0.0 (20XX-XX-XX)
4+
15
## Gazebo Plugin 3.x
26

37
### Gazebo Plugin 3.0.0 (2024-08-27)

examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
22

33
project(examples)
44

5-
find_package(gz-plugin3 QUIET REQUIRED COMPONENTS all)
6-
set(GZ_PLUGIN_VER ${gz-plugin3_VERSION_MAJOR})
5+
find_package(gz-plugin4 QUIET REQUIRED COMPONENTS all)
6+
set(GZ_PLUGIN_VER ${gz-plugin4_VERSION_MAJOR})
77

88
find_package(gz-common6 QUIET)
99
set(GZ_COMMON_VER ${gz-common6_VERSION_MAJOR})

loader/conf/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(gz_library_path "${CMAKE_BINARY_DIR}/test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESI
33

44
# Generate a configuration file for internal testing.
55
# Note that the major version of the library is included in the name.
6-
# Ex: plugin3.yaml
6+
# Ex: plugin4.yaml
77
configure_file(
88
"${GZ_DESIGNATION}.yaml.in"
99
"${CMAKE_CURRENT_BINARY_DIR}/${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.yaml.configured" @ONLY)
@@ -17,7 +17,7 @@ set(gz_library_path "${CMAKE_INSTALL_PREFIX}/lib/ruby/gz/cmd${GZ_DESIGNATION}${P
1717

1818
# Generate the configuration file that is installed.
1919
# Note that the major version of the library is included in the name.
20-
# Ex: plugin3.yaml
20+
# Ex: plugin4.yaml
2121
configure_file(
2222
"${GZ_DESIGNATION}.yaml.in"
2323
"${CMAKE_CURRENT_BINARY_DIR}/${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.yaml" @ONLY)

loader/src/cmd/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ install(
2424
#===============================================================================
2525
# Generate the ruby script for internal testing.
2626
# Note that the major version of the library is included in the name.
27-
# Ex: cmdplugin3.rb
27+
# Ex: cmdplugin4.rb
2828
set(cmd_script_generated_test "${CMAKE_BINARY_DIR}/test/lib/$<CONFIG>/ruby/gz/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb")
2929
set(cmd_script_configured_test "${CMAKE_CURRENT_BINARY_DIR}/test_cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb.configured")
3030

@@ -46,7 +46,7 @@ file(GENERATE
4646
# Used for the installed version.
4747
# Generate the ruby script that gets installed.
4848
# Note that the major version of the library is included in the name.
49-
# Ex: cmdplugin3.rb
49+
# Ex: cmdplugin4.rb
5050
set(cmd_script_generated "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb")
5151
set(cmd_script_configured "${CMAKE_CURRENT_BINARY_DIR}/cmd${GZ_DESIGNATION}${PROJECT_VERSION_MAJOR}.rb.configured")
5252

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-plugin3</name>
5-
<version>3.0.0</version>
4+
<name>gz-plugin4</name>
5+
<version>4.0.0</version>
66
<description>Gazebo Plugin : Cross-platform C++ library for dynamically loading plugins.</description>
77
<maintainer email="ahcorde@gmail.com">Alejandro Hernández Cordero</maintainer>
88
<license>Apache License 2.0</license>

tutorials/02_installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
3535
On Ubuntu systems, `apt-get` can be used to install `gz-plugin`:
3636
```bash
3737
sudo apt-get update
38-
sudo apt install libgz-plugin3-dev
38+
sudo apt install libgz-plugin4-dev
3939
```
4040

4141
## Source Installation
@@ -91,15 +91,15 @@ Sierra (10.12) or later.
9191
2. Run the following commands
9292
```bash
9393
brew tap osrf/simulation
94-
brew install gz-plugin3
94+
brew install gz-plugin4
9595
```
9696

9797
## Source Installation
9898

9999
1. Install dependencies
100100
```bash
101101
brew tap osrf/simulation
102-
brew install gz-plugin3 --only-dependencies
102+
brew install gz-plugin4 --only-dependencies
103103
```
104104

105105
2. Clone the repository

0 commit comments

Comments
 (0)