Skip to content

Commit 72e03a7

Browse files
pkrmffacebook-github-bot
authored andcommitted
Fixing podspec by removing dependency on patch version (#914)
Summary: - ComponentKit will no longer have a dependency on the Yoga's patch version. We are going from 1.6.0 to 1.6. - Bumped version of ComponentKit to 0.22.1. Let me know if that is OK. We should be looking to pushing this new podspec to cocoapods master repo This PR solves [#913](#913) Closes #914 Differential Revision: D8640301 Pulled By: alickbass fbshipit-source-id: c7853edc0180fcaa70b3444cb07a14f213528e77
1 parent 3032a43 commit 72e03a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ComponentKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ComponentKit'
3-
s.version = '0.22'
3+
s.version = '0.23'
44
s.license = 'BSD'
55
s.summary = 'A React-inspired view framework for iOS'
66
s.homepage = 'https://componentkit.org'
@@ -17,5 +17,5 @@ Pod::Spec.new do |s|
1717
'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++14',
1818
'CLANG_CXX_LIBRARY' => 'libc++',
1919
}
20-
s.dependency 'Yoga', '~> 1.6.0'
20+
s.dependency 'Yoga', '~> 1.6'
2121
end

ComponentKit/ComponentKit.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
PRODUCT_NAME = ComponentKit
1313
INFOPLIST_FILE = ComponentKit/Info.plist
1414
PRODUCT_BUNDLE_IDENTIFIER = org.componentkit.ComponentKit
15-
CURRENT_PROJECT_VERSION = 0.22
15+
CURRENT_PROJECT_VERSION = 0.23
1616
ALWAYS_SEARCH_USER_PATHS = NO
1717
CLANG_ENABLE_OBJC_ARC = YES
1818
CLANG_ENABLE_MODULES = YES

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ComponentKit is a view framework for iOS that is heavily inspired by React. It t
99
ComponentKit is available to install via [Carthage](https://github.com/Carthage/Carthage). To get started add the following to your [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile):
1010

1111
```
12-
github "facebook/ComponentKit" ~> 0.22
12+
github "facebook/ComponentKit" ~> 0.23
1313
```
1414

1515
### Opening the Xcode projects

0 commit comments

Comments
 (0)