Skip to content

Commit

Permalink
bump to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pantor committed Jul 10, 2022
1 parent 8882155 commit b17745a
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,7 +1,7 @@
cmake_minimum_required(VERSION 3.10)


project(ruckig VERSION 0.7.0 LANGUAGES CXX)
project(ruckig VERSION 0.7.1 LANGUAGES CXX)


list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
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.7.0</version>
<version>0.7.1</version>
<description>Instantaneous Motion Generation for Robots and Machines.</description>
<author>Lars Berscheid</author>
<maintainer email="[email protected]">Lars Berscheid</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def build_extension(self, ext):

setup(
name='ruckig',
version='0.7.0',
version='0.7.1',
description='Instantaneous Motion Generation for Robots and Machines.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion src/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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.7.0";
m.attr("__version__") = "0.7.1";

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

0 comments on commit b17745a

Please sign in to comment.