Skip to content

Commit

Permalink
Bump version to v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Ballard committed Sep 8, 2016
1 parent 0a12c81 commit ae8620a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion PMJSON.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "PMJSON"
s.version = "0.9.3"
s.version = "0.9.4"
s.summary = "Pure Swift JSON encoding/decoding library"
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."

Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PMJSON

[![Version](https://img.shields.io/badge/version-v0.9.3-blue.svg)](https://github.com/postmates/PMJSON/releases/latest)
[![Version](https://img.shields.io/badge/version-v0.9.4-blue.svg)](https://github.com/postmates/PMJSON/releases/latest)
![Platforms](https://img.shields.io/badge/platforms-ios%20%7C%20osx%20%7C%20watchos%20%7C%20tvos-lightgrey.svg)
![Languages](https://img.shields.io/badge/languages-swift-orange.svg)
![License](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)
Expand Down Expand Up @@ -124,13 +124,13 @@ Installing as a framework requires a minimum of iOS 8, OS X 10.9, watchOS 2.0, o
To install using [Carthage][], add the following to your Cartfile:

```
github "postmates/PMJSON" ~> 0.9
github "postmates/PMJSON" ~> 0.9.4
```

To install using [CocoaPods][], add the following to your Podfile:

```
pod 'PMJSON', '~> 0.9'
pod 'PMJSON', '~> 0.9.4'
```

Once installed, you can use this by adding `import PMJSON` to your code.
Expand Down Expand Up @@ -165,8 +165,9 @@ Unless you explicitly state otherwise, any contribution intentionally submitted

## Version History

#### Development
#### v0.9.4 (2016-09-08)

* Update for Swift 2.3.
* Add setters for basic accessors so you can write code like `json["foo"].object?["key"] = "bar"`.
* Add optional `NSError` userInfo provider for `JSONError`. Setting this up requires calling `JSONError.registerNSErrorUserInfoProvider()`.

Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.9.3</string>
<string>0.9.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.9.3</string>
<string>0.9.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit ae8620a

Please sign in to comment.