Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump for release on main #3314

Merged
merged 4 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions iothub/device/src/Microsoft.Azure.Devices.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net5.0;netstandard2.1;netstandard2.0;net472;net451</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net5.0;netstandard2.1;netstandard2.0</TargetFrameworks>
Expand Down Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.41.3</Version>
<Version>1.42.0</Version>
<Title>Microsoft Azure IoT Device Client SDK</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
10 changes: 10 additions & 0 deletions iothub/service/src/Common/Extensions/CommonExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,16 @@ public static void AppendKeyValuePairIfNotEmpty(this StringBuilder builder, stri
}
}

/// <summary>
/// Check if the value is null or empty.
/// </summary>
/// <param name="value">The value to check.</param>
/// <returns>Returns true if the value is null or empty, otherwise returns false.</returns>
public static bool IsNullOrWhiteSpace(this string value)
{
return string.IsNullOrWhiteSpace(value);
}
brycewang-microsoft marked this conversation as resolved.
Show resolved Hide resolved

/// <summary>
/// Removes white spaces from a string.
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions iothub/service/src/Microsoft.Azure.Devices.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--netcoreapp2.1 target framework here is solely so that this library can use the SocketsHttpHandler class to handle connection lease timeout issues.-->
<!--See #1874 for additional details-->
Expand Down Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.38.2</Version>
<Version>1.39.0</Version>
<Title>Microsoft Azure IoT Service Client SDK</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.19.2</Version>
<Version>1.19.3</Version>
<Title>Microsoft Azure IoT Provisioning Device Client SDK</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.18.2</Version>
<Version>1.18.3</Version>
<Title>Microsoft Azure IoT Provisioning Service Client SDK</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.16.4</Version>
<Version>1.16.5</Version>
<Title>Microsoft Azure IoT Provisioning Device Client AMQP Transport</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.15.2</Version>
<Version>1.15.3</Version>
<Title>Microsoft Azure IoT Provisioning Device Client HTTP Transport</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.17.2</Version>
<Version>1.17.3</Version>
<Title>Microsoft Azure IoT Provisioning Device Client MQTT Transport</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</ItemGroup>

<PropertyGroup>
<Version>1.14.2</Version>
<Version>1.14.3</Version>
<Title>Microsoft Azure IoT Provisioning Device Security TPM Client</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion shared/src/Microsoft.Azure.Devices.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.30.2</Version>
<Version>1.30.3</Version>
<Title>Microsoft Azure IoT Devices Shared</Title>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
Expand Down
18 changes: 9 additions & 9 deletions versions.csv
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
AssemblyPath, Version
iothub\device\src\Microsoft.Azure.Devices.Client.csproj, 1.41.3
iothub\service\src\Microsoft.Azure.Devices.csproj, 1.38.2
shared\src\Microsoft.Azure.Devices.Shared.csproj, 1.30.2
provisioning\device\src\Microsoft.Azure.Devices.Provisioning.Client.csproj, 1.19.2
provisioning\service\src\Microsoft.Azure.Devices.Provisioning.Service.csproj, 1.18.2
provisioning\transport\amqp\src\Microsoft.Azure.Devices.Provisioning.Transport.Amqp.csproj, 1.16.4
provisioning\transport\http\src\Microsoft.Azure.Devices.Provisioning.Transport.Http.csproj, 1.15.2
provisioning\transport\mqtt\src\Microsoft.Azure.Devices.Provisioning.Transport.Mqtt.csproj, 1.17.2
security\tpm\src\Microsoft.Azure.Devices.Provisioning.Security.Tpm.csproj, 1.14.2
iothub\device\src\Microsoft.Azure.Devices.Client.csproj, 1.42.0
iothub\service\src\Microsoft.Azure.Devices.csproj, 1.39.0
shared\src\Microsoft.Azure.Devices.Shared.csproj, 1.30.3
provisioning\device\src\Microsoft.Azure.Devices.Provisioning.Client.csproj, 1.19.3
provisioning\service\src\Microsoft.Azure.Devices.Provisioning.Service.csproj, 1.18.3
provisioning\transport\amqp\src\Microsoft.Azure.Devices.Provisioning.Transport.Amqp.csproj, 1.16.5
provisioning\transport\http\src\Microsoft.Azure.Devices.Provisioning.Transport.Http.csproj, 1.15.3
provisioning\transport\mqtt\src\Microsoft.Azure.Devices.Provisioning.Transport.Mqtt.csproj, 1.17.3
security\tpm\src\Microsoft.Azure.Devices.Provisioning.Security.Tpm.csproj, 1.14.3