diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d5d0e9c4..7726cadb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Release Notes ==== +# 03-20-2024 +DotNext 5.3.1 +* Provided support of thread-local storage for `StreamSource.AsSharedStream` +* Remove type cast for `Func.Constant` static method + # 03-19-2024 DotNext 5.3.0 * Added `StreamSource.AsSharedStream` extension method that allows to obtain read-only stream over memory block which position is local for each consuming async flow or thread. In other words, the stream can be shared between async flows for independent reads. diff --git a/README.md b/README.md index 85ebf97e5..7df385b5b 100644 --- a/README.md +++ b/README.md @@ -44,28 +44,11 @@ All these things are implemented in 100% managed code on top of existing .NET AP * [NuGet Packages](https://www.nuget.org/profiles/rvsakno) # What's new -Release Date: 03-19-2024 +Release Date: 03-20-2024 -DotNext 5.3.0 -* Added `StreamSource.AsSharedStream` extension method that allows to obtain read-only stream over memory block which position is local for each consuming async flow or thread. In other words, the stream can be shared between async flows for independent reads. - -DotNext.Metaprogramming 5.3.0 -* Updated dependencies - -DotNext.Unsafe 5.3.0 -* Updated dependencies - -DotNext.Threading 5.3.0 -* Improved performance of `IndexPool.Take` method - -DotNext.IO 5.3.0 -* Updated dependencies - -DotNext.Net.Cluster 5.3.0 -* Smallish performance improvements of WAL - -DotNext.AspNetCore.Cluster 5.3.0 -* Smallish performance improvements of WAL +DotNext 5.3.1 +* Provided support of thread-local storage for `StreamSource.AsSharedStream` +* Remove type cast for `Func.Constant` static method Changelog for previous versions located [here](./CHANGELOG.md).