From e4a19b7c62b2fae3df24a3dab4ef6fe5b26c5f71 Mon Sep 17 00:00:00 2001 From: Ben Watson Date: Tue, 11 Jun 2024 13:13:28 -0700 Subject: [PATCH] Update version for 3.0.1 release --- CHANGES.md | 6 ++++++ src/Microsoft.IO.RecyclableMemoryStream.csproj | 2 +- src/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e08a6ee..1da9b30 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# Version 3.0.1 + +** Bug Fix** + +* Fix infinite loop bug when calling (Try)GetBuffer on a stream longer than 1 GB when using the `UseExponentialLargeBuffer` option. (Issue #344) + # Version 3.0.0 **Breaking Changes** diff --git a/src/Microsoft.IO.RecyclableMemoryStream.csproj b/src/Microsoft.IO.RecyclableMemoryStream.csproj index 0b467cf..fc1f050 100644 --- a/src/Microsoft.IO.RecyclableMemoryStream.csproj +++ b/src/Microsoft.IO.RecyclableMemoryStream.csproj @@ -7,7 +7,7 @@ bin\$(Configuration)\$(TargetFramework)\Microsoft.IO.RecyclableMemoryStream.xml Microsoft.IO.RecyclableMemoryStream - 3.0.0 + 3.0.1 Microsoft.IO.RecyclableMemoryStream Microsoft A pooled MemoryStream allocator to decrease GC load and improve performance on highly scalable systems. diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index c72ca51..dc7d625 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -33,8 +33,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] +[assembly: AssemblyVersion("3.0.1.0")] +[assembly: AssemblyFileVersion("3.0.1.0")] [assembly: CLSCompliant(true)]