diff --git a/device/Microsoft.Azure.Devices.Client.NetStandard/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client.NetStandard/Properties/AssemblyInfo.cs index 33b96b97f9..adae5c756d 100644 --- a/device/Microsoft.Azure.Devices.Client.NetStandard/Properties/AssemblyInfo.cs +++ b/device/Microsoft.Azure.Devices.Client.NetStandard/Properties/AssemblyInfo.cs @@ -39,4 +39,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.8")] +[assembly: AssemblyInformationalVersion("1.2.9")] diff --git a/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs index c9573bb3ab..f7cbd29cd9 100644 --- a/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs +++ b/device/Microsoft.Azure.Devices.Client.PCL/Properties/AssemblyInfo.cs @@ -27,4 +27,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.8")] +[assembly: AssemblyInformationalVersion("1.2.9")] diff --git a/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client.UWP/Properties/AssemblyInfo.cs index b55ecd716a..9228de9905 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.8")] +[assembly: AssemblyInformationalVersion("1.2.9")] diff --git a/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs b/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs index 4df494d764..11e17109ee 100644 --- a/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs +++ b/device/Microsoft.Azure.Devices.Client/IotHubConnection.cs @@ -423,10 +423,10 @@ 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.8"; + var UWPAssemblyVersion = "1.2.9"; linkSettings.AddProperty(IotHubAmqpProperty.ClientVersion, UWPAssemblyVersion); #elif PCL - string PCLAssemblyVersion = "Microsoft.Azure.Devices.Client/1.2.8"; + string PCLAssemblyVersion = "Microsoft.Azure.Devices.Client/1.2.9"; linkSettings.AddProperty(IotHubAmqpProperty.ClientVersion, PCLAssemblyVersion); #else linkSettings.AddProperty(IotHubAmqpProperty.ClientVersion, Utils.GetClientVersion()); diff --git a/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs b/device/Microsoft.Azure.Devices.Client/Properties/AssemblyInfo.cs index 137a00af5e..cdc394b2bd 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.8")] \ No newline at end of file +[assembly: AssemblyInformationalVersion("1.2.9")] \ 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 338ec5319d..df0e552d7d 100644 --- a/device/NuGet/Microsoft.Azure.Devices.Client.nuspec +++ b/device/NuGet/Microsoft.Azure.Devices.Client.nuspec @@ -16,7 +16,7 @@ - + @@ -29,7 +29,7 @@ - + @@ -37,7 +37,7 @@ - + @@ -66,7 +66,7 @@ - + diff --git a/service/NuGet/Microsoft.Azure.Devices.nuspec b/service/NuGet/Microsoft.Azure.Devices.nuspec index 2afbbca0e6..30283e39c8 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.NetStandard/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared.NetStandard/Properties/AssemblyInfo.cs index 0674fff0f2..062ef7eb3f 100644 --- a/shared/Microsoft.Azure.Devices.Shared.NetStandard/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared.NetStandard/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.9")] \ No newline at end of file +[assembly: AssemblyInformationalVersion("1.0.10")] \ No newline at end of file diff --git a/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs index 1cf4c224fa..f93ebdb098 100644 --- a/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared.PCL/Properties/AssemblyInfo.cs @@ -31,5 +31,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.9")] +[assembly: AssemblyInformationalVersion("1.0.10")] diff --git a/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs index 8c50c9c5ab..e2e0121832 100644 --- a/shared/Microsoft.Azure.Devices.Shared.UWP/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared.UWP/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.0.9")] +[assembly: AssemblyInformationalVersion("1.0.10")] diff --git a/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs b/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs index 6037225268..04297cc61f 100644 --- a/shared/Microsoft.Azure.Devices.Shared/Properties/AssemblyInfo.cs +++ b/shared/Microsoft.Azure.Devices.Shared/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.0.9")] +[assembly: AssemblyInformationalVersion("1.0.10")]