Skip to content

Commit 7ced9cb

Browse files
author
Lars Berscheid
committed
bump to 0.2.0, use libfranka 0.9.0
1 parent a232556 commit 7ced9cb

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
git clone --recursive https://github.com/frankaemika/libfranka.git
3232
cd libfranka
33-
git checkout 0.8.0
33+
git checkout 0.9.0
3434
git submodule update
3535
mkdir build && cd build
3636
cmake -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF ..
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
git clone https://github.com/catchorg/Catch2.git
5353
cd Catch2
54-
git checkout v2.5.0
54+
git checkout v2.13.0
5555
mkdir build && cd build
5656
cmake -DCATCH_BUILD_TESTING=OFF -DCATCH_ENABLE_WERROR=OFF -DCATCH_INSTALL_DOCS=OFF -DCATCH_INSTALL_HELPERS=OFF ..
5757
sudo make install

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
git clone --recursive https://github.com/frankaemika/libfranka.git
4444
cd libfranka
45-
git checkout 0.8.0
45+
git checkout 0.9.0
4646
git submodule update
4747
mkdir build && cd build
4848
cmake -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF ..
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
git clone https://github.com/catchorg/Catch2.git
6565
cd Catch2
66-
git checkout v2.5.0
66+
git checkout v2.13.0
6767
mkdir build && cd build
6868
cmake -DCATCH_BUILD_TESTING=OFF -DCATCH_ENABLE_WERROR=OFF -DCATCH_INSTALL_DOCS=OFF -DCATCH_INSTALL_HELPERS=OFF ..
6969
make install

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.11)
22

33

4-
project(frankx VERSION 0.1.1 LANGUAGES CXX)
4+
project(frankx VERSION 0.2.0 LANGUAGES CXX)
55

66

77
include(GNUInstallDirs)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Frankx is a high-level motion library (both C++ and Python) for the Franka Emika
3232

3333
## Installation
3434

35-
To start using frankx with Python, you can use pip via
35+
To start using frankx with Python and libfranka *0.9.0*, just install it via
3636
```bash
3737
pip install frankx
3838
```
@@ -334,9 +334,9 @@ An auto-generated documentation can be found at [https://pantor.github.io/frankx
334334
Frankx is written in C++17 and Python3.7. It is currently tested against following versions
335335

336336
- Eigen v3.3.7
337-
- Libfranka v0.8.0
338-
- Pybind11 v2.6.0
339-
- Catch2 v2.9 (only for testing)
337+
- Libfranka v0.9.0
338+
- Pybind11 v2.9.1
339+
- Catch2 v2.13 (only for testing)
340340

341341

342342
## License

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Frankx"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.1.1
41+
PROJECT_NUMBER = 0.2.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def build_extension(self, ext):
6868

6969
setup(
7070
name='frankx',
71-
version='0.1.1',
71+
version='0.2.0',
7272
description='High-Level Motion Library for the Franka Panda Robot',
7373
long_description=long_description,
7474
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)