Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

Commit

Permalink
1.8.0 (#62)
Browse files Browse the repository at this point in the history
* Makes formattedWithStyle forLocale public (#56)

Fixes #53.

* [development]: Removes Slather step

Generating coverage in CI just seems so unstable.

* Swift 2.3 (#61)

* [MNY-60]: Recreates Swift 2.3 framework

* [MNY-60]: Refactors CI pipeline

* [MNY-60]: Fixes upload script

* [MNY-60]: Updates build dependencies

* [MNY-60]: Shares Money scheme

Every time I forget to do this.

* [MNY-60]: Fixes deployment targets for iOS

* [MNY-60]: Fixes tvOS platform tests

* [MNY-60]: Restores minimum version of OSX to 10.11

This is to match ValueCoding

* [1.8.0]: Fixes issues raised by podspec linter

* [1.8.0]: Bumps the version to 1.8.0
  • Loading branch information
danthorpe authored Oct 16, 2016
1 parent d483a84 commit 3f1563a
Show file tree
Hide file tree
Showing 44 changed files with 1,174 additions and 2,164 deletions.
22 changes: 11 additions & 11 deletions .ci/buildkite/pipeline.template.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
steps:
-
name: ":fastlane: Test Mac OS X"
command: .ci/scripts/test-osx
name: "macOS"
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_mac"
agents:
name: "$BUILDKITE_AGENT_META_DATA_NAME"
xcode: "$XCODE"
-
name: ":fastlane: Test iOS"
command: .ci/scripts/test-ios
name: "iOS"
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_ios"
agents:
name: "$BUILDKITE_AGENT_META_DATA_NAME"
iOS-Simulator: true
xcode: "$XCODE"
-
type: "waiter"
-
name: ":muscle: Send Coverage"
command: .ci/scripts/send-coverage
name: "tvOS"
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_tvos"
agents:
name: "$BUILDKITE_AGENT_META_DATA_NAME"
iOS-Simulator: true
xcode: "$XCODE"
2 changes: 1 addition & 1 deletion .ci/buildkite/upload
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -eu

# Makes sure all the steps run on this same agent
sed "s/\$BUILDKITE_AGENT_META_DATA_NAME/$BUILDKITE_AGENT_META_DATA_NAME/" .ci/buildkite/pipeline.template.yml
sed "s/\$XCODE/$BUILDKITE_AGENT_META_DATA_XCODE/;s/\$COMMIT/$BUILDKITE_COMMIT/" .ci/buildkite/pipeline.template.yml
43 changes: 10 additions & 33 deletions .fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,37 +1,14 @@
platform :ios do

desc "Runs all the tests"
lane :test do

carthage(
platform: "iOS"
)

scan(
scheme: "Money-iOS",
output_directory: ".ci/xcodebuild-data/",
xcargs: "-derivedDataPath .ci/xcodebuild-data/"
)

end

lane :test_ios do
carthage(platform: "iOS")
scan(scheme: "Money", destination: "platform=iOS Simulator,OS=10.0,name=iPhone 6s")
end

platform :mac do

desc "Runs all the tests"
lane :test do

carthage(
platform: "Mac"
)
lane :test_mac do
carthage(platform: "Mac")
scan(scheme: "Money", destination: "platform=macOS")
end

scan(
scheme: "Money-OSX",
output_directory: ".ci/xcodebuild-data/",
xcargs: "-derivedDataPath .ci/xcodebuild-data/"
)

end

lane :test_tvos do
carthage(platform: "tvOS")
scan(scheme: "Money", destination: "platform=tvOS Simulator,OS=10.0,name=Apple TV 1080p")
end
8 changes: 4 additions & 4 deletions .jazzy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
author_name: Daniel Thorpe
author: Daniel Thorpe
author_url: http://danthorpe.me
module_name: Money
module_version: 1.7.0
module: Money
module_version: 1.8.0
github_url: https://github.com/danthorpe/Money
readme: README.md
podspec: Money.podspec

swift_version: 2.2
swift_version: 2.3
xcodebuild-arguments: -scheme,Money-iOS

custom_categories:
Expand Down
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.3
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.8.0
1. [[MNY-61](https://github.com/danthorpe/Money/pull/61)]: Updates to Swift 2.3.

# 1.7.0
1. [[MNY-47](https://github.com/danthorpe/Money/pull/47)]: Updates to Swift 2.2.

Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "danthorpe/ValueCoding"
github "danthorpe/ValueCoding" "1.5.0"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "danthorpe/ValueCoding" "1.3.0"
github "danthorpe/ValueCoding" "1.5.0"
Loading

0 comments on commit 3f1563a

Please sign in to comment.