Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit fcbd545

Browse files
committed
Version 11.2.3 release
1 parent c71fd86 commit fcbd545

File tree

22 files changed

+55
-43
lines changed

22 files changed

+55
-43
lines changed

Blob/Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes in 11.2.3:
2+
3+
- Fixed race conditions in OpenWrite, UploadFromStream.
4+
15
Changes in 11.2.2:
26

37
- Fixed bug causing performance degradation on .NET Framework. Missing coverage for .NET Standard 1.3.

Blob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage Blob SDK for .NET (11.2.2)
1+
# Microsoft Azure Storage Blob SDK for .NET (11.2.3)
22

33
The Microsoft Azure Storage Blob SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.
44

Common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage Common SDK for .NET (11.2.2)
1+
# Microsoft Azure Storage Common SDK for .NET (11.2.3)
22

33
The Microsoft Azure Storage Common SDK for .NET is referenced by Azure Storage Blob/Queue/File SDKs and Azure CosmosDB Table SDK
44
and should not be referenced directly by your application.

Common/changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes in 11.2.3:
2+
3+
- Fixed race conditions in OpenWrite, UploadFromStream.
4+
15
Changes in 11.2.1:
26

37
- Fixed bug causing performance degradation on .NET Framework.

File/Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes in 11.2.3:
2+
3+
- Fixed race conditions in OpenWrite, UploadFromStream.
4+
15
Changes in 11.2.2:
26

37
- Fixed bug causing performance degradation on .NET Framework. Missing coverage for .NET Standard 1.3.

File/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage File SDK for .NET (11.2.2)
1+
# Microsoft Azure Storage File SDK for .NET (11.2.3)
22

33
The Microsoft Azure Storage File SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.
44

Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("11.2.2.0")]
39-
[assembly: AssemblyFileVersion("11.2.2.0")]
40-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
38+
[assembly: AssemblyVersion("11.2.3.0")]
39+
[assembly: AssemblyFileVersion("11.2.3.0")]
40+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4141

4242
#if SIGN
4343
[assembly: InternalsVisibleTo(

Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
3636

37-
[assembly: AssemblyVersion("11.2.2.0")]
38-
[assembly: AssemblyFileVersion("11.2.2.0")]
39-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
37+
[assembly: AssemblyVersion("11.2.3.0")]
38+
[assembly: AssemblyFileVersion("11.2.3.0")]
39+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4040

4141
#if SIGN
4242
[assembly: InternalsVisibleTo(

Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("11.2.2.0")]
39-
[assembly: AssemblyFileVersion("11.2.2.0")]
40-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
38+
[assembly: AssemblyVersion("11.2.3.0")]
39+
[assembly: AssemblyFileVersion("11.2.3.0")]
40+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4141

4242

4343
#if SIGN

Lib/Common/Shared/Protocol/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ static HeaderConstants()
10601060
/// <summary>
10611061
/// Specifies the value to use for UserAgent header.
10621062
/// </summary>
1063-
public const string UserAgentProductVersion = "11.2.2";
1063+
public const string UserAgentProductVersion = "11.2.3";
10641064

10651065
/// <summary>
10661066
/// Master Microsoft Azure Storage header prefix.

0 commit comments

Comments
 (0)