From ed4f5e81a44a3a0906a2e01ed3fbbb0969f3167f Mon Sep 17 00:00:00 2001 From: seanmcc-msft Date: Wed, 25 Sep 2019 11:49:26 -0700 Subject: [PATCH] v11.1.0 release --- Blob/Changelog.txt | 4 ++++ Blob/README.md | 2 +- Common/README.md | 2 +- File/BreakingChanges.txt | 4 ++++ File/Changelog.txt | 5 +++++ File/README.md | 2 +- Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs | 6 +++--- Lib/Common/Shared/Protocol/Constants.cs | 2 +- Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs | 6 +++--- Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs | 6 +++--- Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs | 6 +++--- .../Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs | 6 +++--- .../Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs | 6 +++--- Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs | 6 +++--- Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs | 6 +++--- Nuspecs/CreatePackages/CreatePackages.csproj | 2 +- Queue/Changelog.txt | 4 ++++ Queue/README.md | 2 +- Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs | 6 +++--- WindowsFormsTest/Properties/Settings.Designer.cs | 2 +- 24 files changed, 63 insertions(+), 46 deletions(-) diff --git a/Blob/Changelog.txt b/Blob/Changelog.txt index 514ee5034..91ae0d280 100644 --- a/Blob/Changelog.txt +++ b/Blob/Changelog.txt @@ -1,3 +1,7 @@ +Changes in 11.1.0: + +- None. + Changes in 11.0.1: - Made CloudBlockBlob.PutBlock() checksum-related overloads public. diff --git a/Blob/README.md b/Blob/README.md index 1e0a41985..c58c092d3 100644 --- a/Blob/README.md +++ b/Blob/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Blob SDK for .NET (11.0.1) +# Microsoft Azure Storage Blob SDK for .NET (11.1.0) The Microsoft Azure Storage Blob SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/Common/README.md b/Common/README.md index 354a2a96f..e8d224c36 100644 --- a/Common/README.md +++ b/Common/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Common SDK for .NET (11.0.1) +# Microsoft Azure Storage Common SDK for .NET (11.1.0) The Microsoft Azure Storage Common SDK for .NET is referenced by Azure Storage Blob/Queue/File SDKs and Azure CosmosDB Table SDK and should not be referenced directly by your application. diff --git a/File/BreakingChanges.txt b/File/BreakingChanges.txt index d1d610261..00ebbc509 100644 --- a/File/BreakingChanges.txt +++ b/File/BreakingChanges.txt @@ -1,3 +1,7 @@ +Tracking Breaking Changes since 11.1: + +- Switched ShareStatus.UsageInBytes from an int to a long + Tracking Breaking Changes since 11.0: - Various MD5-specific parameters on public APIs have been replaced with more generic checksum parameters. For example, ContentMD5 parameter on public APIs has been replaced with a Checksum, which contains MD5 and CRC64 properties. diff --git a/File/Changelog.txt b/File/Changelog.txt index 3babed007..143497fdf 100644 --- a/File/Changelog.txt +++ b/File/Changelog.txt @@ -1,3 +1,8 @@ +Changes in 11.1.0: + +- Fixed bug where CloudFileShare.GetStats() and CloudFileShare.GetStatsAsync() would throw an exception when the Share was larger than Int32.MaxValue +- Switched ShareStatus.UsageInBytes from an int to a long + Changes in 11.0.1: - None diff --git a/File/README.md b/File/README.md index 871c9fed5..79f828508 100644 --- a/File/README.md +++ b/File/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage File SDK for .NET (11.0.1) +# Microsoft Azure Storage File SDK for .NET (11.1.0) The Microsoft Azure Storage File SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs index 13fc07825..f0cc6909b 100644 --- a/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs index 0c36e03be..e0fc1b738 100644 --- a/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs index 9a1a26da1..fedc7e284 100644 --- a/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN diff --git a/Lib/Common/Shared/Protocol/Constants.cs b/Lib/Common/Shared/Protocol/Constants.cs index a37f9ca15..18a84f783 100644 --- a/Lib/Common/Shared/Protocol/Constants.cs +++ b/Lib/Common/Shared/Protocol/Constants.cs @@ -1050,7 +1050,7 @@ static HeaderConstants() /// /// Specifies the value to use for UserAgent header. /// - public const string UserAgentProductVersion = "11.0.1"; + public const string UserAgentProductVersion = "11.1.0"; /// /// Master Microsoft Azure Storage header prefix. diff --git a/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs index 0e28c416e..cc487fc4c 100644 --- a/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs index 85a883dad..67446966f 100644 --- a/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs index a565bc5c3..ae7f25bc6 100644 --- a/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1.0")] -[assembly: AssemblyFileVersion("11.0.1.0")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0.0")] +[assembly: AssemblyFileVersion("11.1.0.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs index dd8f586c8..7e677057a 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs index 0684af26c..0943e1363 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] [assembly: InternalsVisibleTo( "Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs index 0799bdc68..7aeceb06e 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs @@ -22,9 +22,9 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("9d154050-0b01-4f70-afa3-8e2176e9cd73")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] [assembly: InternalsVisibleTo( "Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs index 6e1f0d898..a0dde2a45 100644 --- a/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs index 1549d7ee2..1b01694a7 100644 --- a/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs index d4569bba2..c6f5b4e5b 100644 --- a/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Nuspecs/CreatePackages/CreatePackages.csproj b/Nuspecs/CreatePackages/CreatePackages.csproj index 62deac605..09f5ff3c9 100644 --- a/Nuspecs/CreatePackages/CreatePackages.csproj +++ b/Nuspecs/CreatePackages/CreatePackages.csproj @@ -1,7 +1,7 @@  - 11.0.1 + 11.1.0 origin/master v4.7.2 diff --git a/Queue/Changelog.txt b/Queue/Changelog.txt index 215d93efe..1705a9012 100644 --- a/Queue/Changelog.txt +++ b/Queue/Changelog.txt @@ -1,3 +1,7 @@ +Changes in 11.1.0: + +- None + Changes in 11.0.1: - None diff --git a/Queue/README.md b/Queue/README.md index 6bea6bbda..6fd3ebca2 100644 --- a/Queue/README.md +++ b/Queue/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Queue SDK for .NET (11.0.1) +# Microsoft Azure Storage Queue SDK for .NET (11.1.0) The Microsoft Azure Storage Queue SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs b/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs index ccaf1581d..8c9dda151 100644 --- a/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs +++ b/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("11.0.1")] -[assembly: AssemblyFileVersion("11.0.1")] -[assembly: AssemblyInformationalVersion("11.0.1.0")] +[assembly: AssemblyVersion("11.1.0")] +[assembly: AssemblyFileVersion("11.1.0")] +[assembly: AssemblyInformationalVersion("11.1.0.0")] diff --git a/WindowsFormsTest/Properties/Settings.Designer.cs b/WindowsFormsTest/Properties/Settings.Designer.cs index e4873b1a9..b806bdd46 100644 --- a/WindowsFormsTest/Properties/Settings.Designer.cs +++ b/WindowsFormsTest/Properties/Settings.Designer.cs @@ -13,7 +13,7 @@ namespace WindowsFormsTest.Properties [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.1.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.1.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {