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

Bump main to 8.0.0~pre1 #209

Merged
merged 1 commit into from
Oct 14, 2021
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(ignition-fuel_tools7 VERSION 7.0.0)
project(ignition-fuel_tools8 VERSION 8.0.0)

#============================================================================
# Find ignition-cmake
Expand Down
6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Ignition Fuel Tools 8.x

### Ignition Fuel Tools 8.0.0 (202X-XX-XX)

## Ignition Fuel Tools 7.x

### Ignition Fuel Tools 7.0.0 (2021-09-XX)
### Ignition Fuel Tools 7.0.0 (2021-09-28)

1. Depend on ign-msgs8
* [Pull request #182](https://github.com/ignitionrobotics/ign-fuel-tools/pull/182)
Expand Down
2 changes: 1 addition & 1 deletion example/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)

# Find the Ignition Fuel Tools library
find_package(ignition-fuel_tools7 QUIET REQUIRED)
find_package(ignition-fuel_tools8 QUIET REQUIRED)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${IGNITION-FUEL-TOOLS_CXX_FLAGS}")
include_directories(
${IGNITION-COMMON_INCLUDE_DIRS}
Expand Down
9 changes: 6 additions & 3 deletions tutorials/01_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
Install Ignition Fuel Tools:
```
sudo apt-get update
sudo apt-get install libignition-fuel-tools7-dev
sudo apt-get install libignition-fuel-tools<#>-dev
```

Be sure to replace `<#>` with a number value, such as 6 or 7, depending on
which version you need.

### Mac OS X

Ignition Fuel Tools and several of its dependencies can be compiled on OS
Expand All @@ -47,7 +50,7 @@ ruby -e "$(curl -fsSL https://github.com/raw/Homebrew/install/master/
Run the following commands:
```
brew tap osrf/simulation
brew install ignition-fuel-tools7
brew install ignition-fuel-tools<#>
```

### Windows
Expand Down Expand Up @@ -81,7 +84,7 @@ Make sure you have removed the Ubuntu pre-compiled binaries before
installing from source:

```
sudo apt-get remove libignition-fuel-tools7-dev
sudo apt-get remove libignition-fuel-tools<#>-dev
```

Install prerequisites. A clean Ubuntu system will need:
Expand Down