Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
RBDyn newest version is available in APT, Homebrew and vcpkg

* Fix URDF generation (#82)
* Mark MultiBodyGraph::makeMultiBody as const (#83)
  • Loading branch information
gergondet committed May 26, 2021
1 parent d911bd1 commit 7d9c7fc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set(PROJECT_NAME RBDyn)
set(PROJECT_DESCRIPTION "...")
set(PROJECT_URL "https://github.com/jrl-umi3218/RBDyn")
set(PROJECT_DEBUG_POSTFIX "_d")
set(PROJECT_VERSION 1.4.0)
set(PROJECT_VERSION 1.5.0)
set(PROJECT_USE_CMAKE_EXPORT TRUE)

option(BUILD_RBDYN_PARSERS "Build URDF and YAML parsers" ON)
Expand Down
25 changes: 6 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can also choose the head mirror which will have the latest version of this p

```
curl -1sLf \
'https://dl.cloudsmith.io/public/mc-rtc/stable/setup.deb.sh' \
'https://dl.cloudsmith.io/public/mc-rtc/head/setup.deb.sh' \
| sudo -E bash
```

Expand All @@ -37,32 +37,19 @@ You can then install the package:
sudo apt install librbdyn-dev python-rbdyn python3-rbdyn
```

## Conan
## vcpkg

Install the latest version using [conan](https://conan.io/)
Use the overlay available [here](https://github.com/jrl-umi3218/vcpkg/)

```bash
conan remote add multi-contact https://api.bintray.com/conan/gergondet/multi-contact
# Install the latest release
conan install RBDyn/latest@multi-contact/stable
# Or install the latest development version
# conan install RBDyn/latest@multi-contact/dev
```

## Homebrew OS X install

Install from the command line using [Homebrew](brew.sh):

```bash
# install homebrew package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install caskroom application manager
brew install caskroom/cask/brew-cask
# tap homebrew-science package repository
brew tap homebrew/science
# tap ahundt-robotics repository
brew tap ahundt/robotics
# install tasks and all its dependencies
# Use mc-rtc tap
brew tap mc-rtc/mc-rtc
# install RBDyn and its Python bindings
brew install rbdyn
```

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_default_options():

class RBDynConan(base.Eigen3ToPythonConan):
name = "RBDyn"
version = "1.4.0"
version = "1.5.0"
description = "Model the dynamics of rigid body systems"
topics = ("robotics", "dynamics", "eigen", "python")
url = "https://github.com/jrl-umi3218/RBDyn"
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
rbdyn (1.5.0-1ubuntu1) unstable; urgency=medium

* Update upstream version

-- Pierre Gergondet <[email protected]> Wed, 26 May 2021 18:53:34 +0800

rbdyn (1.4.0-1ubuntu1) unstable; urgency=medium

* Update upstream version
Expand Down

0 comments on commit 7d9c7fc

Please sign in to comment.