Skip to content

Commit

Permalink
Bump iOS depolyment target in ApplePlatformIntegrationTestApp (facebo…
Browse files Browse the repository at this point in the history
…ok#561)

Summary:
Pull Request resolved: facebook#561

Hermes 0.8.1 bump its iOS requirement to iOS 11 following RN 0.65 and
test-apple-runtime job from CircleCI is now complaining that

```
Specs satisfying the `hermes-engine (from `../../`)` dependency were found, but they required a higher minimum deployment target.
```

To fix this we need to bump the iOS version in the test Podfile as well.

Reviewed By: neildhar

Differential Revision: D29971100

fbshipit-source-id: 7aa670e230dbd4e819f11186789f1380f01005fb
  • Loading branch information
Huxpro authored and facebook-github-bot committed Jul 29, 2021
1 parent 1e235ae commit 6f7b4c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hermes-engine.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ end

Pod::Spec.new do |spec|
spec.name = "hermes-engine"
spec.version = "0.8.0"
spec.version = "0.8.1"
spec.summary = "Hermes is a small and lightweight JavaScript engine optimized for running React Native."
spec.description = "Hermes is a JavaScript engine optimized for fast start-up of React Native apps. It features ahead-of-time static optimization and compact bytecode."
spec.homepage = "https://hermesengine.dev"
Expand Down
2 changes: 1 addition & 1 deletion test/ApplePlatformsIntegrationTestApp/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source 'https://cdn.cocoapods.org/'

target 'ApplePlatformsIntegrationMobileTests' do
use_frameworks!
platform :ios, '10'
platform :ios, '11'
pod 'hermes-engine', :path => '../../'
end

Expand Down

0 comments on commit 6f7b4c4

Please sign in to comment.