From bd76017829742781754686ba33ea425df0ebfa1b Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Thu, 4 Jan 2024 13:41:30 +0100 Subject: [PATCH] Release maui-1.0.0 (#317) --- README.md | 4 ++++ nuget/Auth0.OidcClient.MAUI.nuspec | 5 ++++- src/Auth0.OidcClient.MAUI/.version | 2 +- src/Auth0.OidcClient.MAUI/README.md | 4 +--- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4641e419..3a4733aa 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ This library makes use of the [IdentityModel/IdentityModel.OidcClient](https://g ## Documentation +- [MAUI Quickstart](https://auth0.com/docs/quickstart/native/maui) - our interactive guide for quickly adding login, logout and user information to a MAUI application using Auth0. - [UWP Quickstart](https://auth0.com/docs/quickstart/native/windows-uwp-csharp) - our interactive guide for quickly adding login, logout and user information to a UWP application using Auth0. - [WPF/WinForms Quickstart](https://auth0.com/docs/quickstart/native/wpf-winforms) - our interactive guide for quickly adding login, logout and user information to a WPF and WinForms application using Auth0. - [Xamarin Quickstart](https://auth0.com/docs/quickstart/native/xamarin) - our interactive guide for quickly adding login, logout and user information to a Xamarin application using Auth0. @@ -41,6 +42,7 @@ Install-Package Auth0.OidcClient.WPF Install-Package Auth0.OidcClient.WinForms Install-Package Auth0.OidcClient.iOS Install-Package Auth0.OidcClient.AndroidX +Install-Package Auth0.OidcClient.MAUI ``` > *Note*: As `Auth0.OidcClient.Android` relies on [support libraries](https://developer.android.com/topic/libraries/support-library) which have been deprecated by Google since 2019, there is no way for `Auth0.OidcClient.Android` to ever work on .NET 6 and above. If you wish to integrate Auth0 in an Android application, use `Auth0.OidcClient.AndroidX` instead. @@ -78,6 +80,8 @@ var auth0Client = new Auth0Client(new Auth0ClientOptions }); ``` +> ℹ️ Note that MAUI needs more specific configuration, ensure to read [our instructions for MAUI](ster/src/Auth0.OidcClient.MAUI) when you are targetting MAUI. + ## API reference Read [the full API reference](https://auth0.github.io/auth0-oidc-client-net) to find out about the public API's this SDK exposes. diff --git a/nuget/Auth0.OidcClient.MAUI.nuspec b/nuget/Auth0.OidcClient.MAUI.nuspec index 497a35c4..eb696bcd 100644 --- a/nuget/Auth0.OidcClient.MAUI.nuspec +++ b/nuget/Auth0.OidcClient.MAUI.nuspec @@ -2,7 +2,7 @@ Auth0.OidcClient.MAUI - 1.0.0-beta.1 + 1.0.0 Auth0 Auth0 Apache-2.0 @@ -11,6 +11,9 @@ false Auth0 OIDC Client for MAUI apps + Version 1.0.0 + - Initial release for adding support for MAUI on Android, iOS, macOS, and Windows. + Version 1.0.0-beta.1 - Update README diff --git a/src/Auth0.OidcClient.MAUI/.version b/src/Auth0.OidcClient.MAUI/.version index ebb5fbf5..afaf360d 100644 --- a/src/Auth0.OidcClient.MAUI/.version +++ b/src/Auth0.OidcClient.MAUI/.version @@ -1 +1 @@ -1.0.0-beta.1 \ No newline at end of file +1.0.0 \ No newline at end of file diff --git a/src/Auth0.OidcClient.MAUI/README.md b/src/Auth0.OidcClient.MAUI/README.md index ac9728df..01b6c1cd 100644 --- a/src/Auth0.OidcClient.MAUI/README.md +++ b/src/Auth0.OidcClient.MAUI/README.md @@ -2,14 +2,12 @@ Integrate Auth0 in a MAUI application targetting iOS, macOS or Android by using the `Auth0.OIdcClient.MAUI` SDK. -> ℹ️ This SDK is available in **Beta**! Try it out today, any feedback is appreciated. Just as with any beta release, **using this in production is highly discouraged**. - ## Install the SDK The SDK can be installed through Nuget: ```sh -Install-Package Auth0.OIdcClient.MAUI -IncludePrerelease +Install-Package Auth0.OIdcClient.MAUI ``` ## Configuring the SDK