From 877aff5cf1e9dd5245d8d6d8685f377959e7d803 Mon Sep 17 00:00:00 2001 From: sakno Date: Wed, 16 Oct 2024 14:53:39 +0300 Subject: [PATCH] Updated release notes --- CHANGELOG.md | 6 ++++++ README.md | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 155da0f47..cf5ceb475 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Release Notes ==== +# 10-16-2023 +DotNext.Threading 5.15.0 +* Added support of synchronous lock acquisition to `AsyncExclusiveLock`, `AsyncReaderWriterLock`, `AsyncManualResetEvent`, `AsyncAutoResetEvent` so the users can easily migrate step-by-step from monitors and other synchronization primitives to async-friendly primitives +* Fixed random `InvalidOperationException` caused by `RandomAccessCache` +* Added synchronous methods to `RandomAccessCache` to support [251](https://github.com/dotnet/dotNext/issues/251) feature request + # 10-13-2024 DotNext 5.14.0 * Added helpers to `DelegateHelpers` class to convert delegates with synchronous signature to their asynchronous counterparts diff --git a/README.md b/README.md index 15610da80..7b86a0f13 100644 --- a/README.md +++ b/README.md @@ -44,11 +44,12 @@ 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: 10-13-2024 +Release Date: 10-16-2024 -DotNext.Threading 5.15.0 +DotNext.Threading 5.15.0 * Added support of synchronous lock acquisition to `AsyncExclusiveLock`, `AsyncReaderWriterLock`, `AsyncManualResetEvent`, `AsyncAutoResetEvent` so the users can easily migrate step-by-step from monitors and other synchronization primitives to async-friendly primitives * Fixed random `InvalidOperationException` caused by `RandomAccessCache` +* Added synchronous methods to `RandomAccessCache` to support [251](https://github.com/dotnet/dotNext/issues/251) feature request Changelog for previous versions located [here](./CHANGELOG.md).