Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.6.2 #242

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.1
current_version = 0.6.2
commit = True
tag = True
message = chore: Bump toppra version: '{current_version}' --> '{new_version}'
Expand Down
9 changes: 7 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

## Unreleased
## 0.6.2 (Sept 19 2023)

### Changed

- [cpp]: fix numerical issue in Seidel solver for 1D problems. (#232)
- [cpp]: warn when solver fails. (#241)

## 0.6.1

### Changed

- [cpp]: fix numerical issue in Seidel solver for 1D problems. (#232)

## 0.6.0 (Mar 08 2023)

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.6.2
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.5)

project(toppra
VERSION 0.6.1
VERSION 0.6.2
# Disable because not available in CMake 3.5
#DESCRIPTION "Library computing the time-optimal path parameterization."
LANGUAGES CXX)
Expand Down
2 changes: 1 addition & 1 deletion cpp/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<package format='2'>
<name>toppra</name>
<version>0.6.1</version>
<version>0.6.2</version>
<description>Time-Optimal Path Parameterization</description>

<maintainer email="hungpham2511@gmail.com">Hung Pham</maintainer>
Expand Down
Loading