Skip to content

Commit

Permalink
Update version and documentation for 2.1 release (#166)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Watson <bewatson@microsoft.com>
  • Loading branch information
benmwatson and Ben Watson authored Jun 3, 2021
1 parent a5caedb commit a452fef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#Version 2.0.1
#Version 2.1.0

* Added `RecyclableMemoryStreamManager` constructor overloads that take parameters for specifying the maximum free pool sizes. Updated IntelliSense documentation to make clear that these values need to be explciitly set to avoid unbounded pool growth.
* Buffers are now allocated using `GC.AllocateUninitializedArray` in .NET 5.
* net462 and netstandard2.0 targets can now support the `Span`-related APIs via a dependency on System.Memory.
* Updated documentation to fix typos and clarify language in some parts.
* Support for Source Link (Thank you @workgroupengineering)

# Version 2.0

Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.IO.RecyclableMemoryStream.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Microsoft.IO.RecyclableMemoryStream.xml</DocumentationFile>
<!-- NuGet properties -->
<PackageId>Microsoft.IO.RecyclableMemoryStream</PackageId>
<PackageVersion>2.0.0</PackageVersion>
<PackageVersion>2.1.0</PackageVersion>
<Title>Microsoft.IO.RecyclableMemoryStream</Title>
<Authors>Microsoft</Authors>
<Description>A pooled MemoryStream allocator to decrease GC load and improve performance on highly scalable systems.</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,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("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]

[assembly: CLSCompliant(true)]

Expand Down

0 comments on commit a452fef

Please # to comment.