Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina committed Aug 8, 2022
1 parent e08eae0 commit 8d18d11
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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 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://github.com/gazebosim/gz-math/raw/ign-math7/examples/).
Please refer to the [examples directory](https://github.com/gazebosim/gz-math/raw/main/examples/).

# Folder Structure

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://github.com/gazebosim/gz-math/ -b ign-math7
git clone https://github.com/gazebosim/gz-math/ -b main
cd gz-math/examples
mkdir build
cd build
Expand Down

0 comments on commit 8d18d11

Please sign in to comment.