What's Changed
Major breaking change:
- Functions which return (non-POD) values no longer return a
UniquePtr
. Instead they return animpl New
, so you can emplace them on the stack or in aBox
if you prefer. If in doubt, simply append.within_unique_ptr()
to go back to the old behavior. (#998) - Function calls which take rvalue reference parameters (
Thingy&&
) are now supported (#821)
Bug fixes:
- Fix for mdbook off-by-one test ID. by @adetaylor in #1028
Full Changelog: v0.20.1...v0.21.0