Skip to content

Commit

Permalink
Release MAUI v1.0.1 (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Apr 29, 2024
1 parent 26a3485 commit 164c667
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
5 changes: 4 additions & 1 deletion nuget/Auth0.OidcClient.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.Core</id>
<version>4.0.0</version>
<version>4.0.1</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -12,6 +12,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for native apps</description>
<releaseNotes>
Version 4.0.1
- Update Microsoft.IdentityModel.Protocols.OpenIdConnect

Version 4.0.0
- Remove support for Client Secret

Expand Down
16 changes: 10 additions & 6 deletions nuget/Auth0.OidcClient.MAUI.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.MAUI</id>
<version>1.0.0</version>
<version>1.0.1</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -11,6 +11,10 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for MAUI apps</description>
<releaseNotes>
Version 1.0.1
- Add net-6.0 target to Auth0 MAUI NuGet package.
- Bump Auth0.OidcClient.Core to v4, removing support for ClientSecret

Version 1.0.0
- Initial release for adding support for MAUI on Android, iOS, macOS, and Windows.

Expand All @@ -25,25 +29,25 @@
<readme>README.md</readme>
<dependencies>
<group targetFramework="net6.0">
<dependency id="Auth0.OidcClient.Core" version="3.4.1" />
<dependency id="Auth0.OidcClient.Core" version="4.0.1" />
<dependency id="IdentityModel.OidcClient" version="5.2.1" />
</group>
<group targetFramework="net6.0-android29.0">
<dependency id="Auth0.OidcClient.Core" version="3.4.1" />
<dependency id="Auth0.OidcClient.Core" version="4.0.1" />
<dependency id="IdentityModel.OidcClient" version="5.2.1" />
</group>
<group targetFramework="net6.0-ios13.0">
<dependency id="Auth0.OidcClient.Core" version="3.4.1" />
<dependency id="Auth0.OidcClient.Core" version="4.0.1" />
<dependency id="IdentityModel.OidcClient" version="5.2.1" />
<dependency id="System.Runtime.InteropServices.NFloat.Internal" version="6.0.1" />
</group>
<group targetFramework="net6.0-maccatalyst14.0">
<dependency id="Auth0.OidcClient.Core" version="3.4.1" />
<dependency id="Auth0.OidcClient.Core" version="4.0.1" />
<dependency id="IdentityModel.OidcClient" version="5.2.1" />
<dependency id="System.Runtime.InteropServices.NFloat.Internal" version="6.0.1" />
</group>
<group targetFramework="net6.0-windows10.0.19041">
<dependency id="Auth0.OidcClient.Core" version="3.4.1" />
<dependency id="Auth0.OidcClient.Core" version="4.0.1" />
<dependency id="IdentityModel.OidcClient" version="5.2.1" />
<dependency id="Microsoft.WindowsAppSDK" version="1.2.221209.1" />
</group>
Expand Down
6 changes: 3 additions & 3 deletions src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>Auth0.OidcClient</RootNamespace>
<AssemblyVersion>3.4.1</AssemblyVersion>
<FileVersion>3.4.1</FileVersion>
<Version>3.4.1</Version>
<AssemblyVersion>4.0.1</AssemblyVersion>
<FileVersion>4.0.1</FileVersion>
<Version>4.0.1</Version>
<Configurations>Release;Debug</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down

0 comments on commit 164c667

Please sign in to comment.