From 1473354baff3020bcd07f9693d92ec7ce71b9bb3 Mon Sep 17 00:00:00 2001 From: Vasyl Liutikov Date: Thu, 19 Jul 2018 16:12:41 +0200 Subject: [PATCH 1/4] bump verson --- Masonry.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Masonry.podspec b/Masonry.podspec index 51e2b94b..bb44eb8f 100644 --- a/Masonry.podspec +++ b/Masonry.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Masonry' - s.version = '1.1.0' + s.version = '1.1.1' s.license = 'MIT' s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.' s.homepage = 'https://github.com/cloudkite/Masonry' From 582032d9f26b1b882280e98e6c9a28eb1a6687e1 Mon Sep 17 00:00:00 2001 From: Vasyl Liutikov Date: Thu, 19 Jul 2018 16:52:28 +0200 Subject: [PATCH 2/4] updtaed xcode version for travis --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 765668b7..1b91976d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ --- language: objective-c -osx_image: xcode9 +osx_image: xcode9.4 before_install: + - curl https://bootstrap.pypa.io/get-pip.py | python - sudo easy_install cpp-coveralls - gem install xcpretty -N - export LANG=en_US.UTF-8 From 36fb0e033ff0e65acb88945c706899cf2a562bb7 Mon Sep 17 00:00:00 2001 From: Vasyl Liutikov Date: Thu, 19 Jul 2018 17:08:04 +0200 Subject: [PATCH 3/4] updated travis config to modern devices --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b91976d..54974975 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,8 @@ before_install: script: - set -o pipefail - - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS Tests' -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.0' clean test ARCHS=i386 VALID_ARCHS=i386 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c - - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS' -configuration Debug -sdk iphonesimulator clean build ARCHS=i386 VALID_ARCHS=i386 ONLY_ACTIVE_ARCH=NO | xcpretty -c + - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS Tests' -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=11.0' clean test ARCHS=x86_64 VALID_ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c + - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS' -configuration Debug -sdk iphonesimulator clean build ARCHS=x86_64 VALID_ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO | xcpretty -c - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry OSX' -configuration Debug clean build | xcpretty -c after_success: From be367acc5c368faf94a819451cd0a2404aa25f98 Mon Sep 17 00:00:00 2001 From: Vasyl Liutikov Date: Thu, 19 Jul 2018 17:14:36 +0200 Subject: [PATCH 4/4] updated travis config to latest sdk --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 54974975..2108e9a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ before_install: script: - set -o pipefail - - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS Tests' -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=11.0' clean test ARCHS=x86_64 VALID_ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c + - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS Tests' -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=11.4' clean test ARCHS=x86_64 VALID_ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry iOS' -configuration Debug -sdk iphonesimulator clean build ARCHS=x86_64 VALID_ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO | xcpretty -c - xcodebuild -workspace 'Masonry.xcworkspace' -scheme 'Masonry OSX' -configuration Debug clean build | xcpretty -c