Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTOMATIC BUMP] Updates purchases-hybrid-common to 7.1.0 #835

Merged
merged 3 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,16 @@ jobs:
shell: /bin/bash --login -o pipefail
steps:
- checkout
- run:
name: Install Cocoapods
command: |
# This is needed because Flutter doesn't use 'bundle exec'

# Uninstalling preinstalled CircleCI cocoapods
gem uninstall -aIx cocoapods

# Need >= 1.14.0 to prevent ActiveSupport crash
gem install cocoapods -v '>= 1.14.0'
- setup-flutter
- replace-api-key
- build-flutter-project:
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version '6.1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.7.21'
ext.common_version = '7.0.0'
ext.common_version = '7.1.0'
repositories {
google()
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion ios/purchases_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'PurchasesHybridCommon', '7.0.0'
s.dependency 'PurchasesHybridCommon', '7.1.0'
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'

Expand Down
2 changes: 1 addition & 1 deletion macos/purchases_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'FlutterMacOS'
s.dependency 'PurchasesHybridCommon', '7.0.0'
s.dependency 'PurchasesHybridCommon', '7.1.0'
s.platform = :osx, '10.12'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
Expand Down