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

Commit bd6c26a

Browse files
committed
Version 11.1.2 release
1 parent 5cc51b4 commit bd6c26a

File tree

22 files changed

+66
-42
lines changed

22 files changed

+66
-42
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.2:
2+
3+
- None.
4+
15
Changes in 11.1.1:
26

37
- Made .NET Core 2.0 CloudBlockBlob.PutBlock and .PutBlockAsync methods virtual

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.1)
1+
# Microsoft Azure Storage Blob SDK for .NET (11.1.2)
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.1)
1+
# Microsoft Azure Storage Common SDK for .NET (11.1.2)
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Changes in 11.1.2:
2+
3+
- None
4+
5+
Changes in 11.1.1:
6+
7+
- None
8+
9+
Changes in 11.1.0:
10+
11+
- None
12+
113
Changes in 11.0.1:
214

315
- None

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.2:
2+
3+
- Fixed bug where CloudFile.WriteRange() and .WriteRangeAsync() with sourceUri parameter didn't work with SAS.
4+
15
Changes in 11.1.1:
26

37
- None

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.1)
1+
# Microsoft Azure Storage File SDK for .NET (11.1.2)
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.1.0")]
39-
[assembly: AssemblyFileVersion("11.1.1.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2.0")]
39+
[assembly: AssemblyFileVersion("11.1.2.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1.0")]
38-
[assembly: AssemblyFileVersion("11.1.1.0")]
39-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
37+
[assembly: AssemblyVersion("11.1.2.0")]
38+
[assembly: AssemblyFileVersion("11.1.2.0")]
39+
[assembly: AssemblyInformationalVersion("11.1.2.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.1.0")]
39-
[assembly: AssemblyFileVersion("11.1.1.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2.0")]
39+
[assembly: AssemblyFileVersion("11.1.2.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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
@@ -1050,7 +1050,7 @@ static HeaderConstants()
10501050
/// <summary>
10511051
/// Specifies the value to use for UserAgent header.
10521052
/// </summary>
1053-
public const string UserAgentProductVersion = "11.1.1";
1053+
public const string UserAgentProductVersion = "11.1.2";
10541054

10551055
/// <summary>
10561056
/// 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.1.0")]
39-
[assembly: AssemblyFileVersion("11.1.1.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2.0")]
39+
[assembly: AssemblyFileVersion("11.1.2.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1.0")]
39-
[assembly: AssemblyFileVersion("11.1.1.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2.0")]
39+
[assembly: AssemblyFileVersion("11.1.2.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1.0")]
39-
[assembly: AssemblyFileVersion("11.1.1.0")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2.0")]
39+
[assembly: AssemblyFileVersion("11.1.2.0")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
38-
[assembly: AssemblyFileVersion("11.1.1")]
39-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
37+
[assembly: AssemblyVersion("11.1.2")]
38+
[assembly: AssemblyFileVersion("11.1.2")]
39+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
38-
[assembly: AssemblyFileVersion("11.1.1")]
39-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
37+
[assembly: AssemblyVersion("11.1.2")]
38+
[assembly: AssemblyFileVersion("11.1.2")]
39+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
26-
[assembly: AssemblyFileVersion("11.1.1")]
27-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
25+
[assembly: AssemblyVersion("11.1.2")]
26+
[assembly: AssemblyFileVersion("11.1.2")]
27+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
39-
[assembly: AssemblyFileVersion("11.1.1")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2")]
39+
[assembly: AssemblyFileVersion("11.1.2")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
39-
[assembly: AssemblyFileVersion("11.1.1")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2")]
39+
[assembly: AssemblyFileVersion("11.1.2")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1")]
39-
[assembly: AssemblyFileVersion("11.1.1")]
40-
[assembly: AssemblyInformationalVersion("11.1.1.0")]
38+
[assembly: AssemblyVersion("11.1.2")]
39+
[assembly: AssemblyFileVersion("11.1.2")]
40+
[assembly: AssemblyInformationalVersion("11.1.2.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.1</VersionNumber>
4+
<VersionNumber>11.1.2</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.2:
2+
3+
- None
4+
15
Changes in 11.1.1:
26

37
- None

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.1)
1+
# Microsoft Azure Storage Queue SDK for .NET (11.1.2)
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

0 commit comments

Comments
 (0)