You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PMJSON.podspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Pod::Spec.newdo |s|
2
2
s.name="PMJSON"
3
-
s.version="1.2.1"
3
+
s.version="2.0.0"
4
4
s.summary="Pure Swift JSON encoding/decoding library"
5
5
s.description="PMJSON provides a pure-Swift strongly-typed JSON encoder/decoder as well as a set of convenience methods for converting to/from Foundation objects and for decoding JSON structures."
To install using [CocoaPods][], add the following to your Podfile:
224
224
225
225
```
226
-
pod 'PMJSON', '~> 1.2'
226
+
pod 'PMJSON', '~> 2.0'
227
227
```
228
228
229
229
This release supports Swift 3. If you want Swift 2.3 support, you can use
@@ -248,7 +248,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
248
248
249
249
## Version History
250
250
251
-
#### Development
251
+
#### v2.0.0 (2017-01-02)
252
252
253
253
* Add full support for decimal numbers (on supported platforms). This takes the form of a new `JSON` variant `.decimal`, any relevant accessors, and full parsing/decoding support with the new option `.useDecimals`. With this option, any number that would have been decoded as a `Double` will be decoded as a `Decimal` instead.
254
254
* Add a set of `forEach` accessors for working with arrays, similar to the existing `map` and `flatMap` accessors.
0 commit comments