Skip to content

Commit 55c265b

Browse files
benmwatsonBen Watson
andauthored
Prepare 2.3.1 release (#272)
Co-authored-by: Ben Watson <[email protected]>
1 parent 0a6f713 commit 55c265b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/Microsoft.IO/RecyclableMemoryStreamManager.Events/MemoryStreamDisposed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
Logged when the stream is disposed.
44

55
```csharp
6-
public void MemoryStreamDisposed(Guid guid, string tag, TimeSpan lifetime, string allocationStack,
6+
public void MemoryStreamDisposed(Guid guid, string tag, long lifetimeMs, string allocationStack,
77
string disposeStack)
88
```
99

1010
| parameter | description |
1111
| --- | --- |
1212
| guid | A unique ID for this stream. |
1313
| tag | A temporary ID for this stream, usually indicates current usage. |
14-
| lifetime | Lifetime of the stream |
14+
| lifetimeMs | Lifetime in milliseconds of the stream |
1515
| allocationStack | Call stack of initial allocation. |
1616
| disposeStack | Call stack of the dispose. |
1717

src/Microsoft.IO.RecyclableMemoryStream.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Microsoft.IO.RecyclableMemoryStream.xml</DocumentationFile>
88
<!-- NuGet properties -->
99
<PackageId>Microsoft.IO.RecyclableMemoryStream</PackageId>
10-
<PackageVersion>2.3.0</PackageVersion>
10+
<PackageVersion>2.3.1</PackageVersion>
1111
<Title>Microsoft.IO.RecyclableMemoryStream</Title>
1212
<Authors>Microsoft</Authors>
1313
<Description>A pooled MemoryStream allocator to decrease GC load and improve performance on highly scalable systems.</Description>

src/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
37-
[assembly: AssemblyVersion("2.3.0.0")]
38-
[assembly: AssemblyFileVersion("2.3.0.0")]
37+
[assembly: AssemblyVersion("2.3.1.0")]
38+
[assembly: AssemblyFileVersion("2.3.1.0")]
3939

4040
[assembly: CLSCompliant(true)]
4141

0 commit comments

Comments
 (0)