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

Bumps in Ionic: gz-fuel-tools10 #385

Merged
merged 1 commit into from
Oct 11, 2023
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-fuel_tools9 VERSION 9.0.0)
project(gz-fuel_tools10 VERSION 10.0.0)

#============================================================================
# Find gz-cmake
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Gazebo Fuel Tools 10.x

### Gazebo Fuel Tools 10.0.0 (2023-XX-XX)

## Gazebo Fuel Tools 9.x

### Gazebo Fuel Tools 9.0.0 (2023-09-29)
Expand Down
4 changes: 2 additions & 2 deletions example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
project(fuel-tools-examples)

# Find the Gazebo Fuel Tools library
find_package(gz-fuel_tools9 QUIET REQUIRED)
set(GZ_FUEL_TOOLS_VER ${gz-fuel_tools9_VERSION_MAJOR})
find_package(gz-fuel_tools10 QUIET REQUIRED)
set(GZ_FUEL_TOOLS_VER ${gz-fuel_tools10_VERSION_MAJOR})

set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GZ-FUEL-TOOLS_CXX_FLAGS}")

Expand Down
12 changes: 6 additions & 6 deletions tutorials/02_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,26 +66,26 @@ Download the file `download.cc` and save it under `/tmp/conf_tutorial`:

```bash
# Ubuntu and MacOS
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc

# Windows
## CMD
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc -o download.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc -o download.cc
## PowerShell
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc -o download.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc -o download.cc
```

Also, download `CMakeLists.txt` for compiling the example:

```bash
# Ubuntu and MacOS
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt

# Windows
## CMD
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt -o CMakeLists.txt
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt -o CMakeLists.txt
## PowerShell
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt -o CMakeLists.txt
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt -o CMakeLists.txt
```

Install the gflags dependency:
Expand Down
24 changes: 12 additions & 12 deletions tutorials/04_cpp_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ Download the files `list.cc`, `details.cc`, `download.cc`,

```bash
# Ubuntu or MacOS
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/list.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/details.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/list.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/details.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc
wget https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt

# Windows
## CMD
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/list.cc -o list.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/details.cc -o details.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc -o download.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt -o CMakeLists.txt
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/list.cc -o list.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/details.cc -o details.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc -o download.cc
curl -sk https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt -o CMakeLists.txt
## PowerShell
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/list.cc -o list.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/details.cc -o details.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/download.cc -o download.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools9/example/CMakeLists.txt -o CMakeLists.txt
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/list.cc -o list.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/details.cc -o details.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/download.cc -o download.cc
curl https://github.com/gazebosim/gz-fuel-tools/raw/gz-fuel-tools10/example/CMakeLists.txt -o CMakeLists.txt
```

Let's start by compiling the examples:
Expand Down
Loading