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

Update RNTAztecView.podspec dependency #54453

Merged
merged 6 commits into from
Sep 15, 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
17 changes: 10 additions & 7 deletions packages/react-native-aztec/RNTAztecView.podspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'json'

package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Expand All @@ -9,15 +11,16 @@ Pod::Spec.new do |s|
s.license = package['license']
s.homepage = package['homepage']
s.authors = package['author']
s.source = { :git => 'https://github.com/WordPress/gutenberg.git' }
s.source = { git: 'https://github.com/WordPress/gutenberg.git' }
s.source_files = 'ios/RNTAztecView/*.{h,m,swift}'
s.public_header_files = 'ios/RNTAztecView/*.h'
s.requires_arc = true
s.platforms = { :ios => "13.0" }
s.platforms = { ios: '13.0' }
s.swift_version = '5.0'
s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2',
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'}
s.dependency 'React-Core'
s.dependency 'WordPress-Aztec-iOS', '~> 1.19.9'

s.xcconfig = { 'OTHER_LDFLAGS' => '-lxml2',
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' }
s.dependency 'React-Core'
# Intentionally locked because of how it's integrated.
# See https://github.com/WordPress/gutenberg/pull/54453#discussion_r1325582749
s.dependency 'WordPress-Aztec-iOS', '1.19.9'
end
2 changes: 1 addition & 1 deletion packages/react-native-aztec/ios/Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "wordpress-mobile/AztecEditor-iOS" "1.15.0"
github "wordpress-mobile/AztecEditor-iOS" "1.19.9"
2 changes: 1 addition & 1 deletion packages/react-native-aztec/ios/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "wordpress-mobile/AztecEditor-iOS" "1.15.0"
github "wordpress-mobile/AztecEditor-iOS" "1.19.9"
4 changes: 2 additions & 2 deletions packages/react-native-editor/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ PODS:
- React-Core
- RNTAztecView (1.103.3):
- React-Core
- WordPress-Aztec-iOS (~> 1.19.9)
- WordPress-Aztec-iOS (= 1.19.9)
- SDWebImage (5.11.1):
- SDWebImage/Core (= 5.11.1)
- SDWebImage/Core (5.11.1)
Expand Down Expand Up @@ -620,7 +620,7 @@ SPEC CHECKSUMS:
RNReanimated: df2567658c01135f9ff4709d372675bcb9fd1d83
RNScreens: 68fd1060f57dd1023880bf4c05d74784b5392789
RNSVG: 53c661b76829783cdaf9b7a57258f3d3b4c28315
RNTAztecView: e040a6aa70f30017fa97a7e901ca2a3881b170ec
RNTAztecView: 5f275640624887502dae1b8b99183971d2faab76
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
WordPress-Aztec-iOS: fbebd569c61baa252b3f5058c0a2a9a6ada686bb
Expand Down
Loading