From 1a47173944c195d6b143e19b1ba66a561bf4c5e3 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 20 Apr 2021 02:43:46 +0700 Subject: [PATCH] Update RELEASE_NOTE.md for version 0.10.1 release --- RELEASE_NOTES.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 568754ea..8869ac98 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,22 +1,2 @@ -### 0.10.0 April 13 2021 #### -* [Add a generic cross platform serialization support](https://github.com/akkadotnet/Hyperion/pull/208) - -# Cross platform serialization - -You can now address any cross platform package serialization differences by providing a list of package name transformation lambda function into the `SerializerOptions` constructor. The package name will be passed into the lambda function before it is deserialized, and the result of the string transformation is used for deserialization instead of the original package name. - -This short example shows how to address the change from `System.Drawing` in .NET Framework to `System.Drawing.Primitives` in .NET Core: - -``` -Serializer serializer; -#if NETFX -serializer = new Serializer(new SerializerOptions( - packageNameOverrides: new List> { - str => str.Contains("System.Drawing.Primitives") ? str.Replace(".Primitives", "") : str - })); -#elif NETCOREAPP -serializer = new Serializer(); -#endif -``` - -Note that only one package name transformation is allowed, any transform lambda function after the first applied transformation is ignored. \ No newline at end of file +### 0.10.1 April 20 2021 #### +* [Fix SerializerOptions constructor backward compatibility issue with Akka.NET](https://github.com/akkadotnet/Hyperion/pull/214)