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

Commit

Permalink
Merge tag '1.1.0' into development
Browse files Browse the repository at this point in the history
1.1.0
  • Loading branch information
danthorpe committed Nov 6, 2015
2 parents 1a14dc5 + e137751 commit a508013
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.1.0
1. [[MNY-16](https://github.com/danthorpe/Money/pull/16)]: Grab bag of minor issues post 1.0 release.
* Cleans up some minor mistakes (spelling etc).
* Adds `NSCoding` conformance to `FXQuote` - so it can be persisted if needed.
* Adds `FXRemoteProviderType.quote(: BaseMoney, completion: Result<(BaseMoney, FXQuote, CounterMoney), FXError> -> Void) -> NSURLSessionDataTask` API. This is the nuts and bolts of the FX provider now. It returns as its result, the base money (i.e. the input), the quote (which includes the rate), and the counter money (i.e. the output). The `fx` method still exists, and it just unwraps the tuple to return the counter money. See the updated README.
2. [[MNY-17](https://github.com/danthorpe/Money/pull/17)]: There was an oversight in the functions in `DecimalNumberType` which accepts `NSDecimalNumberBehaviors` as an argument. These were unnecessary so I’ve removed them. Hence the minor version bump.

# 1.0.0
🎉🐝 Initial release of Money.
Expand Down
2 changes: 1 addition & 1 deletion Money.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Money"
s.version = "1.0.0"
s.version = "1.1.0"
s.summary = "Swift types for working with Money."
s.description = <<-DESC
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Money is a Swift framework for iOS, watchOS, tvOS and OS X. It provides types an
The Money framework defines the type `Money`, which represents money in the device’s current locale. The following code:

```swift
import Money

let money: Money = 100
print("I'll give \(money) to charity.”)
```
Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/Money.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
//

MONEY_VERSION = 1.0.0
MONEY_VERSION = 1.1.0

APPLICATION_EXTENSION_API_ONLY = YES
INFOPLIST_FILE = $(SRCROOT)/Supporting Files/Info.plist
Expand Down

0 comments on commit a508013

Please sign in to comment.