From 8d6cd163df4d4111c84fc121d7baaceacb6db0a1 Mon Sep 17 00:00:00 2001 From: Daniel Thorpe Date: Tue, 24 Nov 2015 23:06:38 +0000 Subject: [PATCH 1/2] [release]: Bumps the version to 1.4.1 --- Money.podspec | 3 ++- Supporting Files/Money.xcconfig | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Money.podspec b/Money.podspec index 1808768..0178095 100644 --- a/Money.podspec +++ b/Money.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Money" - s.version = "1.4.0" + s.version = "1.4.1" s.summary = "Swift types for working with Money." s.description = <<-DESC @@ -15,6 +15,7 @@ Pod::Spec.new do |s| s.author = { "Daniel Thorpe" => "@danthorpe" } s.source = { :git => "https://github.com/danthorpe/Money.git", :tag => s.version.to_s } s.module_name = 'Money' + s.documentation_url = 'http://docs.danthorpe.me/money/1.4.1/index.html' s.social_media_url = 'https://twitter.com/danthorpe' s.requires_arc = true s.ios.deployment_target = '8.0' diff --git a/Supporting Files/Money.xcconfig b/Supporting Files/Money.xcconfig index ddb677f..adabd06 100644 --- a/Supporting Files/Money.xcconfig +++ b/Supporting Files/Money.xcconfig @@ -6,7 +6,7 @@ // // -MONEY_VERSION = 1.4.0 +MONEY_VERSION = 1.4.1 APPLICATION_EXTENSION_API_ONLY = YES INFOPLIST_FILE = $(SRCROOT)/Supporting Files/Info.plist From 054137347af33f16b7a410cec43436a3195da337 Mon Sep 17 00:00:00 2001 From: Daniel Thorpe Date: Tue, 24 Nov 2015 23:50:34 +0000 Subject: [PATCH 2/2] [release]: Updates CHANGELOG --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8d70d..f76900f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.4.1 +1. [[MNY-28](https://github.com/danthorpe/Money/pull/28)]: Documentation is now hosted at [docs.danthorpe.me](http://docs.danthorpe.me/money/1.4.1/). + # 1.4.0 1. [[MNY-25](https://github.com/danthorpe/Money/pull/25)]: Adds convenience initializers to `DecimalNumberType` for `Int` (including all the variants) and `Double` parameters. Although not technically needed, (as it’s integer and float convertible) this makes it a lot easier to construct `Money` types. 2. [[MNY-24](https://github.com/danthorpe/Money/pull/26)]: Refactors the localized string formatting APIs. Fixed a few bugs which may have rendered string incorrectly formatted in some locales. Also added the ability to format `MoneyType` values using specific language and country locales. See the README for more info.