From 695eddc9b1ecfbdb4d61bf33129bd9e588b0a156 Mon Sep 17 00:00:00 2001 From: jasminel Date: Fri, 10 Feb 2017 14:40:35 -0800 Subject: [PATCH] Bump package versions for release 2017-2-10 --- .../Properties/AssemblyInfo.cs | 2 +- .../Properties/AssemblyInfo.cs | 2 +- device/Microsoft.Azure.Devices.Client/IotHubConnection.cs | 2 +- .../Properties/AssemblyInfo.cs | 2 +- device/NuGet/Microsoft.Azure.Devices.Client.nuspec | 6 +++--- .../Microsoft.Azure.Devices.Uwp/Properties/AssemblyInfo.cs | 2 +- service/Microsoft.Azure.Devices/Common/Utils.cs | 2 +- service/Microsoft.Azure.Devices/Properties/AssemblyInfo.cs | 2 +- service/NuGet/Microsoft.Azure.Devices.nuspec | 4 ++-- .../Properties/AssemblyInfo.cs | 2 +- .../Properties/AssemblyInfo.cs | 2 +- .../Properties/AssemblyInfo.cs | 2 +- .../DeviceExplorer/Properties/AssemblyInfo.cs | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs index 18cc40047c..4d7d7e4e19 100644 --- a/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs +++ b/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs @@ -28,4 +28,4 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.3")] diff --git a/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs index 29dba56bcd..21d6a9b04a 100644 --- a/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs +++ b/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs @@ -30,4 +30,4 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.3")] diff --git a/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs b/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs index 90a505a4cb..fceed9c869 100644 --- a/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs +++ b/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs @@ -382,7 +382,7 @@ protected static AmqpLinkSettings SetLinkSettingsCommonProperties(AmqpLinkSettin #if WINDOWS_UWP // System.Reflection.Assembly.GetExecutingAssembly() does not exist for UWP, therefore use a hard-coded version name // (This string is picked up by the bump_version script, so don't change the line below) - var UWPAssemblyVersion = "1.2.2"; + var UWPAssemblyVersion = "1.2.3"; linkSettings.AddProperty(IotHubAmqpProperty.ClientVersion, UWPAssemblyVersion); #elif PCL string PCLAssemblyVersion = "Microsoft.Azure.Devices.Client/1.0.22"; diff --git a/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs index 9f5b2be990..a632fb39e8 100644 --- a/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs +++ b/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] \ No newline at end of file +[assembly: AssemblyInformationalVersion("1.2.3")] \ No newline at end of file diff --git a/device/NuGet/Microsoft.Azure.Devices.Client.nuspec b/device/NuGet/Microsoft.Azure.Devices.Client.nuspec index 58175214d8..ca917288e0 100644 --- a/device/NuGet/Microsoft.Azure.Devices.Client.nuspec +++ b/device/NuGet/Microsoft.Azure.Devices.Client.nuspec @@ -16,7 +16,7 @@ - + @@ -29,13 +29,13 @@ - + - + diff --git a/service/Microsoft.Azure.Devices.Uwp/Properties/AssemblyInfo.cs b/service/Microsoft.Azure.Devices.Uwp/Properties/AssemblyInfo.cs index fef3690813..69cfcc1428 100644 --- a/service/Microsoft.Azure.Devices.Uwp/Properties/AssemblyInfo.cs +++ b/service/Microsoft.Azure.Devices.Uwp/Properties/AssemblyInfo.cs @@ -25,7 +25,7 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.3")] #if (RELEASE_DELAY_SIGN) [assembly: AssemblyDelaySignAttribute(true)] diff --git a/service/Microsoft.Azure.Devices/Common/Utils.cs b/service/Microsoft.Azure.Devices/Common/Utils.cs index 18953fc54d..c9dc904b96 100644 --- a/service/Microsoft.Azure.Devices/Common/Utils.cs +++ b/service/Microsoft.Azure.Devices/Common/Utils.cs @@ -66,7 +66,7 @@ public static string GetClientVersion() #if WINDOWS_UWP // System.Reflection.Assembly.GetExecutingAssembly() does not exist for UWP, therefore use a hard-coded version name // (This string is picked up by the bump_version script, so don't change the line below) - var UWPAssemblyVersion = "1.2.2"; + var UWPAssemblyVersion = "1.2.3"; return UWPAssemblyVersion; #else var a = Assembly.GetExecutingAssembly(); diff --git a/service/Microsoft.Azure.Devices/Properties/AssemblyInfo.cs b/service/Microsoft.Azure.Devices/Properties/AssemblyInfo.cs index 44a9e27e36..64daede6d0 100644 --- a/service/Microsoft.Azure.Devices/Properties/AssemblyInfo.cs +++ b/service/Microsoft.Azure.Devices/Properties/AssemblyInfo.cs @@ -25,7 +25,7 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.3")] #if (RELEASE_DELAY_SIGN) [assembly: AssemblyDelaySignAttribute(true)] diff --git a/service/NuGet/Microsoft.Azure.Devices.nuspec b/service/NuGet/Microsoft.Azure.Devices.nuspec index ec32664ff0..a907bcb1ce 100644 --- a/service/NuGet/Microsoft.Azure.Devices.nuspec +++ b/service/NuGet/Microsoft.Azure.Devices.nuspec @@ -12,14 +12,14 @@ en-US - + - + diff --git a/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs index 3fbd37ce21..122272488c 100644 --- a/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs @@ -34,5 +34,5 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.0.6")] +[assembly: AssemblyInformationalVersion("1.0.7")] diff --git a/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs index 47c6cc0276..cc85c39d72 100644 --- a/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs @@ -34,4 +34,4 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.0.6")] +[assembly: AssemblyInformationalVersion("1.0.7")] diff --git a/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs index 82009574c8..25b8f077b2 100644 --- a/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs @@ -34,4 +34,4 @@ // Version information for an assembly follows semantic versioning 1.0.0 (because // NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details. -[assembly: AssemblyInformationalVersion("1.0.6")] +[assembly: AssemblyInformationalVersion("1.0.7")] diff --git a/tools/DeviceExplorer/DeviceExplorer/Properties/AssemblyInfo.cs b/tools/DeviceExplorer/DeviceExplorer/Properties/AssemblyInfo.cs index d262782187..3ee94a400d 100644 --- a/tools/DeviceExplorer/DeviceExplorer/Properties/AssemblyInfo.cs +++ b/tools/DeviceExplorer/DeviceExplorer/Properties/AssemblyInfo.cs @@ -36,4 +36,4 @@ // Version information for an assembly follows semantic versioning 1.0.0. See // semver.org for details. -[assembly: AssemblyInformationalVersion("1.2.2")] +[assembly: AssemblyInformationalVersion("1.2.3")]