From cb1960262094dcb8c7065ec78bc2777889ca589e Mon Sep 17 00:00:00 2001 From: Charlie Savage Date: Sun, 25 Feb 2024 15:57:37 -0800 Subject: [PATCH] Version 4.3 --- CHANGELOG.md | 6 ++++++ lib/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca37d823..01c44030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 4.3 +* Add support for STL containers that contain pointers +* Add support for std::string_view +* Fix handling of std::shared_ptr that resulted in moving them instead of copying them +* Fix container iteration so elements are passed by reference and not copied + ## 4.2.1 * Support systems who use `#include ` over `#include`. See [#197](https://github.com/jasonroelofs/rice/issues/197) and [#201](https://github.com/jasonroelofs/rice/pull/201) diff --git a/lib/version.rb b/lib/version.rb index 3c80f209..63230010 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ module Rice - VERSION = "4.2.1" + VERSION = "4.3.0" end