Skip to content

Commit a99d195

Browse files
committed
bump: Set Changelog to release tag 0.18.1
1 parent 0e90d60 commit a99d195

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/workflows/pylibfranka-docs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- name: Build Docker Image
2020
uses: docker/build-push-action@v4
2121
with:
22-
context: .
23-
file: ./.devcontainer/Dockerfile
22+
context: ci/
23+
file: .ci/Dockerfile.focal
2424
tags: pylibfranka:latest
2525
push: false
2626
load: true
@@ -44,28 +44,28 @@ jobs:
4444
export PATH="$HOME/.local/bin:$PATH"
4545
export LC_ALL=C.UTF-8
4646
export LANG=C.UTF-8
47-
47+
4848
# Install pylibfranka
4949
pip3 install .
50-
50+
5151
# Move to docs directory
5252
cd pylibfranka/docs
53-
53+
5454
# Install Sphinx requirements
5555
pip3 install -r requirements.txt --user
56-
56+
5757
# Get version from installed package (synced from CMakeLists.txt)
5858
VERSION=$(python3 -c "import pylibfranka; print(pylibfranka.__version__)")
5959
echo "Building documentation for version: $VERSION"
6060
6161
# Build documentation
6262
make clean
6363
make html
64-
64+
6565
# Prepare output directory with pylibfranka subfolder
6666
mkdir -p /workspace/docs_output/pylibfranka/${VERSION}
6767
cp -r _build/html/* /workspace/docs_output/pylibfranka/${VERSION}/
68-
68+
6969
# Also copy to 'latest' directory for easy access
7070
mkdir -p /workspace/docs_output/pylibfranka/latest
7171
cp -r _build/html/* /workspace/docs_output/pylibfranka/latest/

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
All notable changes to libfranka and pylibfranka will be documented in this file.
44

5-
## [Unreleased]
5+
## [0.18.1]
6+
Requires Franka Research 3 System Version >= 5.9.0
67

78
### libfranka - C++
89
#### Changed

CMakeLists.txt

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

33
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
44

5-
set(libfranka_VERSION 0.18.0)
5+
set(libfranka_VERSION 0.18.1)
66

77
project(libfranka
88
VERSION ${libfranka_VERSION}

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="3">
66
<name>libfranka</name>
7-
<version>0.18.0</version>
7+
<version>0.18.1</version>
88
<description>libfranka is a C++ library for Franka Robotics research robots</description>
99
<maintainer email="[email protected]">Franka Robotics GmbH</maintainer>
1010
<license>Apache 2.0</license>

0 commit comments

Comments
 (0)