Skip to content

Commit

Permalink
bump to v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pantor committed Aug 29, 2024
1 parent 0c1e2b8 commit 801c5f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

set(RUCKIG_VERSION 0.12.2)
set(RUCKIG_VERSION 0.14.0)
project(ruckig VERSION ${RUCKIG_VERSION} LANGUAGES CXX)


Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>ruckig</name>
<version>0.12.2</version>
<version>0.14.0</version>
<description>Instantaneous Motion Generation for Robots and Machines.</description>
<author>Lars Berscheid</author>
<maintainer email="lars.berscheid@ruckig.com">Lars Berscheid</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ruckig"
version = "0.12.2"
version = "0.14.0"
authors = [
{name = "Lars Berscheid", email = "lars.berscheid@ruckig.com"},
]
Expand Down
2 changes: 1 addition & 1 deletion src/ruckig/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PYBIND11_MODULE(ruckig, m) {
m.doc() = "Instantaneous Motion Generation for Robots and Machines. Real-time and time-optimal trajectory calculation \
given a target waypoint with position, velocity, and acceleration, starting from any initial state \
limited by velocity, acceleration, and jerk constraints.";
m.attr("__version__") = "0.12.2";
m.attr("__version__") = "0.14.0";

py::enum_<ControlInterface>(m, "ControlInterface")
.value("Position", ControlInterface::Position)
Expand Down

0 comments on commit 801c5f6

Please sign in to comment.