From 13ed3e629af69095c4c15387dcc4d8d07f955810 Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Thu, 8 Mar 2018 18:25:35 +0100 Subject: [PATCH 1/2] Update to 1.8.0 --- Yoga.podspec | 4 ++-- YogaKit.podspec | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Yoga.podspec b/Yoga.podspec index 1f096861..440ff10d 100644 --- a/Yoga.podspec +++ b/Yoga.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Yoga' - spec.version = '1.7.0' + spec.version = '1.8.0' spec.license = { :type => 'MIT', :file => "LICENSE" } spec.homepage = 'https://facebook.github.io/yoga/' spec.documentation_url = 'https://facebook.github.io/yoga/docs/api/c/' @@ -11,7 +11,7 @@ Pod::Spec.new do |spec| spec.authors = 'Facebook' spec.source = { :git => 'https://github.com/facebook/yoga.git', - :tag => '1.7.0', + :tag => '1.8.0', } spec.module_name = 'yoga' diff --git a/YogaKit.podspec b/YogaKit.podspec index 085e0b73..582f4ecf 100644 --- a/YogaKit.podspec +++ b/YogaKit.podspec @@ -1,6 +1,6 @@ podspec = Pod::Spec.new do |spec| spec.name = 'YogaKit' - spec.version = '1.7.0' + spec.version = '1.8.0' spec.license = { :type => 'MIT', :file => "LICENSE" } spec.homepage = 'https://facebook.github.io/yoga/' spec.documentation_url = 'https://facebook.github.io/yoga/docs/api/yogakit/' @@ -11,14 +11,14 @@ podspec = Pod::Spec.new do |spec| spec.authors = 'Facebook' spec.source = { :git => 'https://github.com/facebook/yoga.git', - :tag => '1.7.0', + :tag => '1.8.0', } spec.platform = :ios spec.ios.deployment_target = '8.0' spec.ios.frameworks = 'UIKit' - spec.dependency 'Yoga', '~> 1.7' + spec.dependency 'Yoga', '~> 1.8' spec.source_files = 'YogaKit/Source/*.{h,m,swift}' spec.public_header_files = 'YogaKit/Source/{YGLayout,UIView+Yoga}.h' spec.private_header_files = 'YogaKit/Source/YGLayout+Private.h' -- 2.50.1.windows.1 From 0023fa439d3ae174664726b1032a12cba1ec2f62 Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Thu, 8 Mar 2018 18:26:15 +0100 Subject: [PATCH 2/2] Set explicit public header files in Yoga podspec --- Yoga.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/Yoga.podspec b/Yoga.podspec index 440ff10d..1b497b7c 100644 --- a/Yoga.podspec +++ b/Yoga.podspec @@ -25,4 +25,5 @@ Pod::Spec.new do |spec| '-fPIC' ] spec.source_files = 'yoga/**/*.{c,h,cpp}' + spec.public_header_files = 'yoga/{Yoga,YGEnums,YGMacros}.h' end -- 2.50.1.windows.1