From c9bc0d7777b37be1a92c7c1a276c268338dc0e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 25 May 2022 21:31:41 +0200 Subject: [PATCH] doc: updated changelog. --- doc/changelog.dox | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/changelog.dox b/doc/changelog.dox index ddd164e72..663106b6e 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -826,6 +826,14 @@ See also: @ref MAGNUM_BUILD_DEPRECATED is enabled, the returned type acts as a @ref Corrade::Containers::Optional but has (deprecated) implicit conversion to a @ref Corrade::Containers::Pointer to avoid breaking user code. +- All @ref Platform APIs that used to take or return a @ref std::string are + ported to use @relativeref{Corrade,Containers::StringView} + or @relativeref{Corrade,Containers::String} instead. If + @ref MAGNUM_BUILD_DEPRECATED is enabled, implicit conversion from and to a + @ref std::string is provided by including the + @ref Corrade/Containers/StringStl.h header. Include it explicitly in your + code if you want to keep using a @ref std::string. See also + [mosra/magnum#559](https://github.com/mosra/magnum/pull/559). - All @ref Trade::AbstractImporter APIs that used to take or return a @ref std::string are ported to use @relativeref{Corrade,Containers::StringView} or @relativeref{Corrade,Containers::String} instead. If