Skip to content

Commit

Permalink
release 4.0.1 (#1049)
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen committed Apr 15, 2019
1 parent 151003d commit 6ac3115
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
@@ -1,8 +1,8 @@
language: objective-c
osx_image: xcode9
osx_image: xcode10.2
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- gem install cocoapods --quiet
- gem install xcpretty --quiet
- cd Tests && pod install && cd $TRAVIS_BUILD_DIR
script: rake test

4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

### Version 4.0.1:
* Memory improvements and fixes.
* Other minor fixes

### Version 4.0.0:
* Adds support for Xcode 9.
* Deprecated UIAlertView, UIActionSheet, UIPopoverController.
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -3,7 +3,7 @@ include FileUtils::Verbose
namespace :test do
desc "Run the XLForm Tests"
task :ios do
run_tests('XLForm Tests', 'iphonesimulator11.0')
run_tests('XLForm Tests', 'iphonesimulator12.2')
tests_failed unless $?.success?
end
end
Expand All @@ -17,7 +17,7 @@ task :default => 'test'
private

def run_tests(scheme, sdk)
sh("xcodebuild -workspace 'Tests/XLForm Tests.xcworkspace' -scheme '#{scheme}' -sdk '#{sdk}' -destination 'OS=11.0,name=iPhone 8' -configuration Release clean test | xcpretty -c ; exit ${PIPESTATUS[0]}") rescue nil
sh("xcodebuild -workspace 'Tests/XLForm Tests.xcworkspace' -scheme '#{scheme}' -sdk '#{sdk}' -destination 'OS=12.2,name=iPhone 8' -configuration Release clean test | xcpretty -c ; exit ${PIPESTATUS[0]}") rescue nil
end

def tests_failed
Expand Down

0 comments on commit 6ac3115

Please sign in to comment.