Skip to content

Commit

Permalink
Fixing podspec by removing dependency on patch version (#914)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pkrmf authored and facebook-github-bot committed Jun 26, 2018
1 parent 3032a43 commit 72e03a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ComponentKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ComponentKit'
s.version = '0.22'
s.version = '0.23'
s.license = 'BSD'
s.summary = 'A React-inspired view framework for iOS'
s.homepage = 'https://componentkit.org'
Expand All @@ -17,5 +17,5 @@ Pod::Spec.new do |s|
'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++14',
'CLANG_CXX_LIBRARY' => 'libc++',
}
s.dependency 'Yoga', '~> 1.6.0'
s.dependency 'Yoga', '~> 1.6'
end
2 changes: 1 addition & 1 deletion ComponentKit/ComponentKit.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
PRODUCT_NAME = ComponentKit
INFOPLIST_FILE = ComponentKit/Info.plist
PRODUCT_BUNDLE_IDENTIFIER = org.componentkit.ComponentKit
CURRENT_PROJECT_VERSION = 0.22
CURRENT_PROJECT_VERSION = 0.23
ALWAYS_SEARCH_USER_PATHS = NO
CLANG_ENABLE_OBJC_ARC = YES
CLANG_ENABLE_MODULES = YES
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ComponentKit is a view framework for iOS that is heavily inspired by React. It t
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):

```
github "facebook/ComponentKit" ~> 0.22
github "facebook/ComponentKit" ~> 0.23
```

### Opening the Xcode projects
Expand Down

0 comments on commit 72e03a7

Please sign in to comment.