Skip to content

Commit

Permalink
Prepare 2.3.1 release (#272)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Watson <[email protected]>
  • Loading branch information
benmwatson and Ben Watson committed Feb 7, 2023
1 parent 0a6f713 commit 55c265b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Logged when the stream is disposed.

```csharp
public void MemoryStreamDisposed(Guid guid, string tag, TimeSpan lifetime, string allocationStack,
public void MemoryStreamDisposed(Guid guid, string tag, long lifetimeMs, string allocationStack,
string disposeStack)
```

| parameter | description |
| --- | --- |
| guid | A unique ID for this stream. |
| tag | A temporary ID for this stream, usually indicates current usage. |
| lifetime | Lifetime of the stream |
| lifetimeMs | Lifetime in milliseconds of the stream |
| allocationStack | Call stack of initial allocation. |
| disposeStack | Call stack of the dispose. |

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 @@ -7,7 +7,7 @@
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Microsoft.IO.RecyclableMemoryStream.xml</DocumentationFile>
<!-- NuGet properties -->
<PackageId>Microsoft.IO.RecyclableMemoryStream</PackageId>
<PackageVersion>2.3.0</PackageVersion>
<PackageVersion>2.3.1</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.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: AssemblyVersion("2.3.1.0")]
[assembly: AssemblyFileVersion("2.3.1.0")]

[assembly: CLSCompliant(true)]

Expand Down

0 comments on commit 55c265b

Please sign in to comment.