diff --git a/auth0_flutter/.shiprc b/auth0_flutter/.shiprc index da5ac3c0..51bd573f 100644 --- a/auth0_flutter/.shiprc +++ b/auth0_flutter/.shiprc @@ -3,6 +3,9 @@ "lib/src/version.dart": [], "pubspec.yaml": [ "version: {MAJOR}.{MINOR}.{PATCH}" + ], + "ios/auth0_flutter.podspec": [ + "= '{MAJOR}.{MINOR}.{PATCH}'" ] }, "prebump": "flutter analyze", diff --git a/auth0_flutter/ios/auth0_flutter.podspec b/auth0_flutter/ios/auth0_flutter.podspec index 51714c84..1866f00b 100644 --- a/auth0_flutter/ios/auth0_flutter.podspec +++ b/auth0_flutter/ios/auth0_flutter.podspec @@ -3,22 +3,21 @@ # Run `pod lib lint auth0_flutter.podspec` to validate before publishing. # Pod::Spec.new do |s| - s.name = 'auth0_flutter' - s.version = ' 1.0.0-fa.0' - s.summary = 'A new flutter plugin project.' - s.description = <<-DESC -A new flutter plugin project. - DESC - s.homepage = 'http://example.com' - s.license = { :file => '../LICENSE' } - s.author = { 'Auth0' => 'email@auth0.com' } - s.source = { :path => '.' } + s.name = 'auth0_flutter' + s.version = '1.0.1' + s.summary = 'Auth0 SDK for Flutter' + s.description = 'Auth0 SDK for Flutter Android and iOS apps.' + s.homepage = 'https://auth0.com' + s.license = { :file => '../LICENSE' } + s.author = { 'Auth0' => 'support@auth0.com' } + s.source = { :path => '.' } s.source_files = 'Classes/**/*' + s.platform = :ios, '12.0' + s.dependency 'Flutter' s.dependency 'Auth0', '~> 2.3' - s.platform = :ios, '12.0' # Flutter.framework does not contain a i386 slice. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } - s.swift_version = ['5.3', '5.4', '5.5', '5.6'] + s.swift_version = ['5.3', '5.4', '5.5', '5.6', '5.7'] end