From 1bd7f7b0b73ab4170e7aed5badb7d718a8a85bed Mon Sep 17 00:00:00 2001 From: Joris Vaillant Date: Thu, 1 Feb 2024 17:34:08 +0100 Subject: [PATCH] unique_ptr: Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 758b5246e..2364981bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Support for `Eigen::SparseMatrix` types ([#426](https://github.com/stack-of-tasks/eigenpy/pull/426)) - Support for `boost::variant` types with `VariantConverter` ([#430](https://github.com/stack-of-tasks/eigenpy/pull/430)) - Support for `std::variant` types with `VariantConverter` ([#431](https://github.com/stack-of-tasks/eigenpy/pull/431)) -- Support for `std::unique_ptr` types with `StdUniquePtrCallPolicies` ([#433](https://github.com/stack-of-tasks/eigenpy/pull/433)) +- Support for `std::unique_ptr` as a return types with `StdUniquePtrCallPolicies` ([#433](https://github.com/stack-of-tasks/eigenpy/pull/433)) +- Support for `std::unique_ptr` as an internal reference with `ReturnInternalStdUniquePtr` ([#433](https://github.com/stack-of-tasks/eigenpy/pull/433)) ### Fixed - Fix the issue of missing exposition of Eigen types with __int64 scalar type ([#426](https://github.com/stack-of-tasks/eigenpy/pull/426))