Skip to content

Commit

Permalink
Bump version to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyball committed Feb 19, 2018
1 parent fe84693 commit 5f13756
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 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 = "2.0.3"
s.version = "3.0.0"
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
2 changes: 1 addition & 1 deletion PMJSON.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
0AE408A72036BEEF00A73EBC /* Codable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Codable.swift; sourceTree = "<group>"; };
0AE408A92036C6A000A73EBC /* SwiftCodableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftCodableTests.swift; sourceTree = "<group>"; };
0AE408AC2038024E00A73EBC /* JSONKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONKey.swift; sourceTree = "<group>"; };
0AE408AE2038028100A73EBC /* PMJSON.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = PMJSON.podspec; sourceTree = "<group>"; };
0AE408AE2038028100A73EBC /* PMJSON.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; path = PMJSON.podspec; sourceTree = "<group>"; };
0AE408B52038063500A73EBC /* SwiftEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftEncoder.swift; sourceTree = "<group>"; };
9E0317C41D664B9000096D9E /* sample.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = sample.json; sourceTree = "<group>"; };
9E0317C61D664D7D00096D9E /* README.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
Expand Down
18 changes: 9 additions & 9 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-v2.0.3-blue.svg)](https://github.com/postmates/PMJSON/releases/latest)
[![Version](https://img.shields.io/badge/version-v3.0.0-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 @@ -197,7 +197,7 @@ The [Swift Package Manager][] may be used to install PMJSON by adding it to your
let package = Package(
name: "YourPackage",
dependencies: [
.Package(url: "https://github.com/postmates/PMJSON.git", majorVersion: 2)
.Package(url: "https://github.com/postmates/PMJSON.git", majorVersion: 3)
]
)
```
Expand All @@ -209,27 +209,27 @@ let package = Package(
To install using [Carthage][], add the following to your Cartfile:

```
github "postmates/PMJSON" ~> 2.0
github "postmates/PMJSON" ~> 3.0
```

This release supports Swift 3. If you want Swift 2.3 support, you can use
This release supports Swift 4. If you want Swift 3.x support, you can use

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

### CocoaPods

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

```
pod 'PMJSON', '~> 2.0'
pod 'PMJSON', '~> 3.0'
```

This release supports Swift 3. If you want Swift 2.3 support, you can use
This release supports Swift 4. If you want Swift 3.x support, you can use

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

[CocoaPods]: https://cocoapods.org
Expand All @@ -248,7 +248,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted

## Version History

#### Development
#### v3.0.0 (2018-02-18)

* Convert to Swift 4.
* Implement `Codable` on `JSON`.
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>2.0.3</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/PMJSONTests/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>2.0.3</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 5f13756

Please sign in to comment.