diff --git a/CHANGELOG.md b/CHANGELOG.md index b7bbb35..93148b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.3.1 + +- 🎉 Add support for Android Plugin API v2 (#67) +- 🎉 Add support for ephemeral sessions (#64) +- 🌹 Avoid deprecated RaisedButton in example (#75) +- 🌹 Cleanup metadata + ## 0.3.0 - 💥 Add null safety support (#60) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 30b310c..7881e49 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,22 +1,23 @@ PODS: - - Flutter (1.0.0) - - flutter_web_auth (0.3.0): + - Flutter (2.0.2) + - flutter_web_auth (0.3.1): - Flutter DEPENDENCIES: - - Flutter (from `.symlinks/flutter/ios`) - flutter_web_auth (from `.symlinks/plugins/flutter_web_auth/ios`) +SPEC REPOS: + trunk: + - Flutter + EXTERNAL SOURCES: - Flutter: - :path: ".symlinks/flutter/ios" flutter_web_auth: :path: ".symlinks/plugins/flutter_web_auth/ios" SPEC CHECKSUMS: - Flutter: 0e3d915762c693b495b44d77113d4970485de6ec - flutter_web_auth: ede89bf8107b021cf16e769756d267d84d24e88b + Flutter: c48dd2c06f81cd2d28c2d5e68a129c76508452c2 + flutter_web_auth: eae2fc62b97d9a44c5c2a1ed0404a6ce396e3d7f PODFILE CHECKSUM: 58760ca3c5878cb71ae11bd6eeff33fd4ce06e4f -COCOAPODS: 1.9.3 +COCOAPODS: 1.10.1 diff --git a/example/ios/Runner.xcodeproj/project.pbxproj b/example/ios/Runner.xcodeproj/project.pbxproj index 35a79c4..78a88ef 100644 --- a/example/ios/Runner.xcodeproj/project.pbxproj +++ b/example/ios/Runner.xcodeproj/project.pbxproj @@ -240,13 +240,13 @@ ); inputPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh", - "${PODS_ROOT}/../.symlinks/flutter/ios/Flutter.framework", "${BUILT_PRODUCTS_DIR}/flutter_web_auth/flutter_web_auth.framework", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flutter/Flutter.framework/Flutter", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_web_auth.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; diff --git a/example/macos/Podfile.lock b/example/macos/Podfile.lock index 2de4945..3a76af2 100644 --- a/example/macos/Podfile.lock +++ b/example/macos/Podfile.lock @@ -1,22 +1,23 @@ PODS: - - flutter_web_auth (0.3.0): + - flutter_web_auth (0.3.1): - FlutterMacOS - - FlutterMacOS (1.0.0) + - FlutterMacOS (2.0.0) DEPENDENCIES: - flutter_web_auth (from `Flutter/ephemeral/.symlinks/plugins/flutter_web_auth/macos`) - - FlutterMacOS (from `Flutter/ephemeral/.symlinks/flutter/darwin-x64`) + +SPEC REPOS: + trunk: + - FlutterMacOS EXTERNAL SOURCES: flutter_web_auth: :path: Flutter/ephemeral/.symlinks/plugins/flutter_web_auth/macos - FlutterMacOS: - :path: Flutter/ephemeral/.symlinks/flutter/darwin-x64 SPEC CHECKSUMS: - flutter_web_auth: 9313580ed4eda5bfc281171cab902253aa1712da - FlutterMacOS: 15bea8a44d2fa024068daa0140371c020b4b6ff9 + flutter_web_auth: 1d40e4d0058da11c04a279ca27632bd448865f57 + FlutterMacOS: 2f1b456c4d9436c4d4d13919bd3be8ef03ba6322 PODFILE CHECKSUM: 882fce9150893cd66c23bbd28a572b3439b8ac6d -COCOAPODS: 1.9.3 +COCOAPODS: 1.10.1 diff --git a/example/macos/Runner.xcodeproj/project.pbxproj b/example/macos/Runner.xcodeproj/project.pbxproj index a434bf3..c59dfa5 100644 --- a/example/macos/Runner.xcodeproj/project.pbxproj +++ b/example/macos/Runner.xcodeproj/project.pbxproj @@ -329,10 +329,10 @@ buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( + inputPaths = ( ); name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( + outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; diff --git a/example/pubspec.lock b/example/pubspec.lock index 2464054..573b7d8 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -73,7 +73,7 @@ packages: path: ".." relative: true source: path - version: "0.3.0" + version: "0.3.1" matcher: dependency: transitive description: diff --git a/ios/flutter_web_auth.podspec b/ios/flutter_web_auth.podspec index 4554d1b..b42cbf7 100644 --- a/ios/flutter_web_auth.podspec +++ b/ios/flutter_web_auth.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'flutter_web_auth' - s.version = '0.3.0' + s.version = '0.3.1' s.summary = 'A new flutter plugin project.' s.description = <<-DESC A new flutter plugin project. diff --git a/macos/flutter_web_auth.podspec b/macos/flutter_web_auth.podspec index f0ef87d..85f3db0 100644 --- a/macos/flutter_web_auth.podspec +++ b/macos/flutter_web_auth.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'flutter_web_auth' - s.version = '0.3.0' + s.version = '0.3.1' s.summary = 'A new flutter plugin project.' s.description = <<-DESC A new flutter plugin project. diff --git a/pubspec.yaml b/pubspec.yaml index 708e0fd..714209d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_web_auth description: Flutter plugin for authenticating a user with a web service. -version: 0.3.0 +version: 0.3.1 homepage: https://github.com/LinusU/flutter_web_auth environment: