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.

Lib/NetStandard2.Split/Blob/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/NetStandard2.Split/File/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("Microsoft.Azure.Storage.Test, PublicKey=" +

Lib/NetStandard2.Split/Queue/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/Netstandard.Split/Microsoft.Azure.Storage.Blob/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")]
38-
[assembly: AssemblyFileVersion("11.2.2")]
39-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
37+
[assembly: AssemblyVersion("11.2.3")]
38+
[assembly: AssemblyFileVersion("11.2.3")]
39+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4040

4141
#if SIGN
4242
[assembly: InternalsVisibleTo(

Lib/Netstandard.Split/Microsoft.Azure.Storage.File/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")]
38-
[assembly: AssemblyFileVersion("11.2.2")]
39-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
37+
[assembly: AssemblyVersion("11.2.3")]
38+
[assembly: AssemblyFileVersion("11.2.3")]
39+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4040

4141
[assembly: InternalsVisibleTo(
4242
"Microsoft.Azure.Storage.Test, PublicKey=" +

Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("9d154050-0b01-4f70-afa3-8e2176e9cd73")]
2424

25-
[assembly: AssemblyVersion("11.2.2")]
26-
[assembly: AssemblyFileVersion("11.2.2")]
27-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
25+
[assembly: AssemblyVersion("11.2.3")]
26+
[assembly: AssemblyFileVersion("11.2.3")]
27+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
2828

2929
[assembly: InternalsVisibleTo(
3030
"Microsoft.Azure.Storage.Test, PublicKey=" +

Lib/WindowsDesktop.Split/Blob/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")]
39-
[assembly: AssemblyFileVersion("11.2.2")]
40-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
38+
[assembly: AssemblyVersion("11.2.3")]
39+
[assembly: AssemblyFileVersion("11.2.3")]
40+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4141

4242
#if SIGN
4343
[assembly: InternalsVisibleTo(

Lib/WindowsDesktop.Split/File/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")]
39-
[assembly: AssemblyFileVersion("11.2.2")]
40-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
38+
[assembly: AssemblyVersion("11.2.3")]
39+
[assembly: AssemblyFileVersion("11.2.3")]
40+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4141

4242
#if SIGN
4343
[assembly: InternalsVisibleTo(

Lib/WindowsDesktop.Split/Queue/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")]
39-
[assembly: AssemblyFileVersion("11.2.2")]
40-
[assembly: AssemblyInformationalVersion("11.2.2.0")]
38+
[assembly: AssemblyVersion("11.2.3")]
39+
[assembly: AssemblyFileVersion("11.2.3")]
40+
[assembly: AssemblyInformationalVersion("11.2.3.0")]
4141

4242
#if SIGN
4343
[assembly: InternalsVisibleTo(

Nuspecs/CreatePackages/CreatePackages.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="BuildPackage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionNumber>11.2.2</VersionNumber>
4+
<VersionNumber>11.2.3</VersionNumber>
55
<MasterBranch>origin/master</MasterBranch>
66
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
77
<TargetFrameworkProfile />

Queue/README.md

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
We have engineered a highly performant and scalable SDK with our V12 releases. We encourage all our customers to give it a try.
2323

24-
# Microsoft Azure Storage SDK for .NET (11.2.2)
24+
# Microsoft Azure Storage SDK for .NET (11.2.3)
2525

2626
> Server Version: 2019-07-07
2727

0 commit comments

Comments
 (0)