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

Commit e6f678b

Browse files
committed
Version 11.1.6 release
1 parent 2afb44c commit e6f678b

File tree

23 files changed

+59
-43
lines changed

23 files changed

+59
-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.1.6:
2+
3+
- Fixed bug where response streaming hangs indefinietly on .NET Framework. Eagerly dispose network stream if read timeout occurs.
4+
15
Changes in 11.1.5:
26

37
- Fixed bug where egress bytes were not reported.

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.1.5)
1+
# Microsoft Azure Storage Blob SDK for .NET (11.1.6)
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.1.5)
1+
# Microsoft Azure Storage Common SDK for .NET (11.1.6)
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.1.6:
2+
3+
- Fixed bug where response streaming hangs indefinietly on .NET Framework. Eagerly dispose network stream if read timeout occurs.
4+
15
Changes in 11.1.5:
26

37
- Fixed bug where egress bytes were not reported.

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.1.6:
2+
3+
- Fixed bug where response streaming hangs indefinietly on .NET Framework. Eagerly dispose network stream if read timeout occurs.
4+
15
Changes in 11.1.5:
26

37
- Fixed bug where egress bytes were not reported.

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.1.5)
1+
# Microsoft Azure Storage File SDK for .NET (11.1.6)
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.1.5.0")]
39-
[assembly: AssemblyFileVersion("11.1.5.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6.0")]
39+
[assembly: AssemblyFileVersion("11.1.6.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5.0")]
38-
[assembly: AssemblyFileVersion("11.1.5.0")]
39-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
37+
[assembly: AssemblyVersion("11.1.6.0")]
38+
[assembly: AssemblyFileVersion("11.1.6.0")]
39+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5.0")]
39-
[assembly: AssemblyFileVersion("11.1.5.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6.0")]
39+
[assembly: AssemblyFileVersion("11.1.6.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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
@@ -1055,7 +1055,7 @@ static HeaderConstants()
10551055
/// <summary>
10561056
/// Specifies the value to use for UserAgent header.
10571057
/// </summary>
1058-
public const string UserAgentProductVersion = "11.1.5";
1058+
public const string UserAgentProductVersion = "11.1.6";
10591059

10601060
/// <summary>
10611061
/// 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.1.5.0")]
39-
[assembly: AssemblyFileVersion("11.1.5.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6.0")]
39+
[assembly: AssemblyFileVersion("11.1.6.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5.0")]
39-
[assembly: AssemblyFileVersion("11.1.5.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6.0")]
39+
[assembly: AssemblyFileVersion("11.1.6.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5.0")]
39-
[assembly: AssemblyFileVersion("11.1.5.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6.0")]
39+
[assembly: AssemblyFileVersion("11.1.6.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
38-
[assembly: AssemblyFileVersion("11.1.5")]
39-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
37+
[assembly: AssemblyVersion("11.1.6")]
38+
[assembly: AssemblyFileVersion("11.1.6")]
39+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
38-
[assembly: AssemblyFileVersion("11.1.5")]
39-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
37+
[assembly: AssemblyVersion("11.1.6")]
38+
[assembly: AssemblyFileVersion("11.1.6")]
39+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
26-
[assembly: AssemblyFileVersion("11.1.5")]
27-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
25+
[assembly: AssemblyVersion("11.1.6")]
26+
[assembly: AssemblyFileVersion("11.1.6")]
27+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
39-
[assembly: AssemblyFileVersion("11.1.5")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6")]
39+
[assembly: AssemblyFileVersion("11.1.6")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
39-
[assembly: AssemblyFileVersion("11.1.5")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6")]
39+
[assembly: AssemblyFileVersion("11.1.6")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5")]
39-
[assembly: AssemblyFileVersion("11.1.5")]
40-
[assembly: AssemblyInformationalVersion("11.1.5.0")]
38+
[assembly: AssemblyVersion("11.1.6")]
39+
[assembly: AssemblyFileVersion("11.1.6")]
40+
[assembly: AssemblyInformationalVersion("11.1.6.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.1.5</VersionNumber>
4+
<VersionNumber>11.1.6</VersionNumber>
55
<MasterBranch>origin/master</MasterBranch>
66
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
77
<TargetFrameworkProfile />

Queue/Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes in 11.1.6:
2+
3+
- Fixed bug where response streaming hangs indefinietly on .NET Framework. Eagerly dispose network stream if read timeout occurs.
4+
15
Changes in 11.1.5:
26

37
- Fixed bug where egress bytes were not reported.

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.1.5)
1+
# Microsoft Azure Storage Queue SDK for .NET (11.1.6)
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
@@ -13,7 +13,7 @@
1313
## For more details, please visit the proper location for each repo.
1414

1515

16-
# Microsoft Azure Storage SDK for .NET (11.1.5)
16+
# Microsoft Azure Storage SDK for .NET (11.1.6)
1717

1818
> Server Version: 2019-02-02
1919

0 commit comments

Comments
 (0)