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

Commit 48aa025

Browse files
committed
Merge branch 'release/1.6.1'
2 parents 621d6be + fdb1042 commit 48aa025

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+175
-2561
lines changed

.ci/buildkite/pipeline.template.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ steps:
1212
-
1313
type: "waiter"
1414
-
15-
name: ":codecov: Send Coverage"
15+
name: ":muscle: Send Coverage"
1616
command: .ci/scripts/send-coverage
1717
agents:
1818
name: "$BUILDKITE_AGENT_META_DATA_NAME"

.ci/scripts/send-coverage

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
#!/usr/bin/env bash
2-
bash <(curl -s https://codecov.io/bash) -X gcov -X coveragepy -D .ci/xcodebuild-data
2+
source /usr/local/opt/chruby/share/chruby/chruby.sh
3+
chruby ruby
4+
bundle exec slather coverage --scheme Money-iOS --buildkite --coveralls --build-directory .ci/xcodebuild-data

.jazzy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
author_name: Daniel Thorpe
22
author_url: http://danthorpe.me
33
module_name: Money
4-
module_version: 1.6.0
4+
module_version: 1.6.1
55
github_url: https://github.com/danthorpe/Money
66
readme: README.md
77
podspec: Money.podspec

.slather.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
coverage_service: coveralls
2+
xcodeproj: Money.xcodeproj
3+
build_directory: .ci/xcodebuild-data
4+
ignore:
5+
- Tests/*
6+
- Supporting Files/*

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.6.1
2+
1. [[MNY-42](https://github.com/danthorpe/Money/pull/42)]: Removes all the example projects to [danthorpe/Examples](https://github.com/danthorpe/Examples). This is done mostly to avoid an issue where Carthage attempts to build all Xcode projects it can find in a repository.
3+
2. [[MNY-43](https://github.com/danthorpe/Money/pull/43)]: Switch the code coverage reporting tool to [Coveralls](https://coveralls.io/github/danthorpe/Money), and got the coverage back to 100%.
4+
15
# 1.6.0
26
1. [[MNY-39](https://github.com/danthorpe/Money/pull/39)]: Updates the spelling of CocoaPods, thanks [https://github.com/ReadmeCritic](@ReadmeCritic)!
37
2. [[MNY-34](https://github.com/danthorpe/Money/pull/34)]: Refactors `CurrencyType` to remove the formatter property, and include a default `CurrencyStyle`. This update makes it a lot easier to make custom currency types, and overall improves or fixes bugs with the ISO currency types. If you have custom currencies you may need to perform some slight refactoring, but it shouldn’t be too complex.

0 commit comments

Comments
 (0)