diff --git a/CHANGELOG.md b/CHANGELOG.md index 841bf4d..4927681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.7.0 + +- Added Magic Link support to Flows +- New `DescopeException` now thrown from all operations +- Fixed `redirectUrl` parameter +- Added Logger & Network client for easier debugging + # 0.6.0 - Beta release. diff --git a/lib/src/sdk/sdk.dart b/lib/src/sdk/sdk.dart index e5db2c4..233e83a 100644 --- a/lib/src/sdk/sdk.dart +++ b/lib/src/sdk/sdk.dart @@ -20,7 +20,7 @@ class DescopeSdk { static const name = 'DescopeFlutter'; /// The Descope SDK version - static const version = '0.6.0'; + static const version = '0.7.0'; /// The configuration of the [DescopeSdk] instance. final DescopeConfig config; diff --git a/pubspec.yaml b/pubspec.yaml index 2f404d4..03d8f9d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: descope description: A Flutter package for working with the Descope API. -version: 0.6.0 +version: 0.7.0 homepage: https://www.descope.com repository: https://github.com/descope/descope-flutter issue_tracker: https://github.com/descope/descope-flutter/issues