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 #478

Merged
merged 3 commits into from
Aug 9, 2022
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
6 changes: 3 additions & 3 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports_files(["LICENSE"])

PROJECT_NAME = "gz-math"

PROJECT_MAJOR = 7
PROJECT_MAJOR = 8

PROJECT_MINOR = 0

Expand Down Expand Up @@ -78,9 +78,9 @@ cc_library(

# use shared library only when absolutely needd
cc_binary(
name = "libgz-math7.so",
name = "libgz-math8.so",
includes = ["include"],
linkopts = ["-Wl,-soname,libgz-math7.so"],
linkopts = ["-Wl,-soname,libgz-math8.so"],
linkshared = True,
deps = [
":gz_math",
Expand Down
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.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-math7 VERSION 7.0.0)
project(gz-math8 VERSION 8.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 Math 8.x

### Gazebo Math 8.0.0 (202X-XX-XX)

## Gazebo Math 7.x

### Gazebo Math 7.x.x
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ See the [installation tutorial](https://gazebosim.org/api/math/6.8/install.html)

# Usage

Please refer to the [examples directory](https:/gazebosim/gz-math/raw/ign-math7/examples/).
Please refer to the [examples directory](https:/gazebosim/gz-math/raw/main/examples/).

# Folder Structure

Expand Down
4 changes: 2 additions & 2 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(gz-math-examples)

# Find the Gazebo Math library
find_package(gz-math7 REQUIRED)
set(GZ_MATH_VER ${gz-math7_VERSION_MAJOR})
find_package(gz-math8 REQUIRED)
set(GZ_MATH_VER ${gz-math8_VERSION_MAJOR})

add_executable(additively_separable_scalar_field3_example additively_separable_scalar_field3_example.cc)
target_link_libraries(additively_separable_scalar_field3_example gz-math${GZ_MATH_VER}::gz-math${GZ_MATH_VER})
Expand Down
2 changes: 1 addition & 1 deletion tutorials/color.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This tutorial explains how to use the `Color` class from Gazebo Math library.
Go to `gz-math/examples` and use `cmake` to compile the code:

```{.sh}
git clone https:/gazebosim/gz-math/ -b ign-math7
git clone https:/gazebosim/gz-math/ -b main
cd gz-math/examples
mkdir build
cd build
Expand Down