From b3f0658960644a69052102cac415f89e23112f66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Caron?= Date: Tue, 2 Apr 2024 11:48:37 +0200 Subject: [PATCH] Release v2.1.0 --- CHANGELOG.md | 5 ++++- CITATION.cff | 4 ++-- README.md | 3 +-- pink/__init__.py | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2f189ca..6320104d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## Unreleased +## [2.1.0] - 2024-04-02 + ### Added - Function ``get_transform`` in the Configuration class @@ -270,7 +272,8 @@ All notable changes to this project will be documented in this file. Python package infrastructure. -[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v2.0.0...HEAD +[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/qpsolvers/qpsolvers/compare/v2.0.0...v2.1.0 [2.0.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.1.0...v2.0.0 [1.1.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/qpsolvers/qpsolvers/compare/v0.11.0...v1.0.0 diff --git a/CITATION.cff b/CITATION.cff index 266ade35..505eaf96 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ cff-version: 1.2.0 message: "If you find this code helpful, please cite it as below." title: "Pink: Python inverse kinematics based on Pinocchio" -version: 2.0.0 -date-released: 2024-03-05 +version: 2.1.0 +date-released: 2024-04-02 url: "https://github.com/stephane-caron/pink" license: "Apache-2.0" authors: diff --git a/README.md b/README.md index c26ebf5b..94cfdeb2 100644 --- a/README.md +++ b/README.md @@ -156,9 +156,8 @@ If you use Pink in your scientific works, please cite it *e.g.* as follows: title = {{Pink: Python inverse kinematics based on Pinocchio}}, author = {Caron, Stéphane and De Mont-Marin, Yann and Budhiraja, Rohan and Bang, Seung Hyeon}, license = {Apache-2.0}, - month = mar, url = {https://github.com/stephane-caron/pink}, - version = {2.0.0}, + version = {2.1.0}, year = {2024} } ``` diff --git a/pink/__init__.py b/pink/__init__.py index ddd32d2a..3b10a08c 100644 --- a/pink/__init__.py +++ b/pink/__init__.py @@ -18,7 +18,7 @@ ) from .utils import custom_configuration_vector -__version__ = "2.0.0" +__version__ = "2.1.0" __all__ = [ "Configuration",