From 5355e06cdbc9bd8be9fa3ee9408a536ccf213f7c Mon Sep 17 00:00:00 2001 From: Jody Donetti Date: Sat, 12 Nov 2022 18:44:48 +0100 Subject: [PATCH] v0.16.0 --- Directory.Build.props | 4 ++-- .../ZiggyCreatures.FusionCache.Backplane.Memory.csproj | 2 +- ...reatures.FusionCache.Backplane.StackExchangeRedis.csproj | 2 +- .../ZiggyCreatures.FusionCache.Chaos.csproj | 6 ++++-- ...tures.FusionCache.Serialization.NeueccMessagePack.csproj | 4 ++-- ...reatures.FusionCache.Serialization.NewtonsoftJson.csproj | 2 +- ...gyCreatures.FusionCache.Serialization.ProtoBufNet.csproj | 4 ++-- ...reatures.FusionCache.Serialization.SystemTextJson.csproj | 2 +- .../ZiggyCreatures.FusionCache.csproj | 3 ++- 9 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1d3d1468..8deecbce 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -26,8 +26,8 @@ - - + + true diff --git a/src/ZiggyCreatures.FusionCache.Backplane.Memory/ZiggyCreatures.FusionCache.Backplane.Memory.csproj b/src/ZiggyCreatures.FusionCache.Backplane.Memory/ZiggyCreatures.FusionCache.Backplane.Memory.csproj index 1462e966..70cfbbf2 100644 --- a/src/ZiggyCreatures.FusionCache.Backplane.Memory/ZiggyCreatures.FusionCache.Backplane.Memory.csproj +++ b/src/ZiggyCreatures.FusionCache.Backplane.Memory/ZiggyCreatures.FusionCache.Backplane.Memory.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Backplane.Memory logo-128x128.png FusionCache in memory backplane, used for testing diff --git a/src/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis.csproj b/src/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis.csproj index 6dc3971b..8491f85d 100644 --- a/src/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis.csproj +++ b/src/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis/ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis logo-128x128.png FusionCache backplane for Redis based on the StackExchange.Redis library diff --git a/src/ZiggyCreatures.FusionCache.Chaos/ZiggyCreatures.FusionCache.Chaos.csproj b/src/ZiggyCreatures.FusionCache.Chaos/ZiggyCreatures.FusionCache.Chaos.csproj index 591a0686..a87b7339 100644 --- a/src/ZiggyCreatures.FusionCache.Chaos/ZiggyCreatures.FusionCache.Chaos.csproj +++ b/src/ZiggyCreatures.FusionCache.Chaos/ZiggyCreatures.FusionCache.Chaos.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Chaos logo-128x128.png Chaos-related utilities and implementations of various componenets (like a distributed cache or a backplane), useful for things like testing dependent components' behaviour in a controlled failing environment. @@ -12,7 +12,9 @@ ZiggyCreatures.Caching.Fusion.Chaos ZiggyCreatures.FusionCache.Chaos.xml README.md - Added ChaosSerializer, to allow better testing of various error conditions while de/serializing + + - fixed a typo in the Fusio(n)CacheChaosUtils utility class + diff --git a/src/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack.csproj b/src/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack.csproj index 3f0bfc4f..12539579 100644 --- a/src/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack.csproj +++ b/src/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack/ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack.csproj @@ -5,7 +5,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack logo-128x128.png FusionCache serializer based on Neuecc's MessagePack serializer @@ -13,7 +13,7 @@ ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack.xml README.md - Initial release + Dependencies update diff --git a/src/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson.csproj b/src/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson.csproj index e490fa3a..03c33939 100644 --- a/src/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson.csproj +++ b/src/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson/ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson logo-128x128.png FusionCache serializer based on Newtonsoft Json.NET diff --git a/src/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet.csproj b/src/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet.csproj index 505a18da..3b3cce76 100644 --- a/src/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet.csproj +++ b/src/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet/ZiggyCreatures.FusionCache.Serialization.ProtoBufNet.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.14.0 + 0.16.0 ZiggyCreatures.FusionCache.Serialization.ProtoBufNet logo-128x128.png FusionCache serializer based on protobuf-net @@ -12,7 +12,7 @@ ZiggyCreatures.FusionCache.Serialization.ProtoBufNet ZiggyCreatures.FusionCache.Serialization.ProtoBufNet.xml README.md - Initial impl + Initial release diff --git a/src/ZiggyCreatures.FusionCache.Serialization.SystemTextJson/ZiggyCreatures.FusionCache.Serialization.SystemTextJson.csproj b/src/ZiggyCreatures.FusionCache.Serialization.SystemTextJson/ZiggyCreatures.FusionCache.Serialization.SystemTextJson.csproj index f7d7c9ec..1f717f9a 100644 --- a/src/ZiggyCreatures.FusionCache.Serialization.SystemTextJson/ZiggyCreatures.FusionCache.Serialization.SystemTextJson.csproj +++ b/src/ZiggyCreatures.FusionCache.Serialization.SystemTextJson/ZiggyCreatures.FusionCache.Serialization.SystemTextJson.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache.Serialization.SystemTextJson logo-128x128.png FusionCache serializer based on System.Text.Json diff --git a/src/ZiggyCreatures.FusionCache/ZiggyCreatures.FusionCache.csproj b/src/ZiggyCreatures.FusionCache/ZiggyCreatures.FusionCache.csproj index 10cf226c..46825238 100644 --- a/src/ZiggyCreatures.FusionCache/ZiggyCreatures.FusionCache.csproj +++ b/src/ZiggyCreatures.FusionCache/ZiggyCreatures.FusionCache.csproj @@ -4,7 +4,7 @@ netstandard2.0 9.0 enable - 0.15.0 + 0.16.0 ZiggyCreatures.FusionCache logo-128x128.png FusionCache is an easy to use, high performance and robust cache with an optional distributed 2nd layer and some advanced features. @@ -15,6 +15,7 @@ - added Protobuf support - added [DebuggerDisplay] support for some classes + - better nullability annotations - better xml docs