Skip to content

Commit 393dbb4

Browse files
committed
Update README
1 parent ab17f86 commit 393dbb4

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
MessagePack.swift
22
=================
33

4-
[![CI Status](http://img.shields.io/travis/a2/MessagePack.swift.svg?style=flat)](https://travis-ci.org/a2/MessagePack.swift)
4+
[![CI Status](https://img.shields.io/travis/a2/MessagePack.swift.svg?style=flat)](https://travis-ci.org/a2/MessagePack.swift)
55
[![Version](https://img.shields.io/cocoapods/v/MessagePack.swift.svg?style=flat)](http://cocoapods.org/pods/MessagePack.swift)
66
[![License](https://img.shields.io/cocoapods/l/MessagePack.swift.svg?style=flat)](http://cocoapods.org/pods/MessagePack.swift)
77
[![Platform](https://img.shields.io/cocoapods/p/MessagePack.swift.svg?style=flat)](http://cocoapods.org/pods/MessagePack.swift)
88

9-
A fast, zero-dependency MessagePack implementation written in Swift 3. Supports Apple platforms and Linux.
9+
A fast, zero-dependency MessagePack implementation written in Swift 4. Supports Apple platforms and Linux.
1010

1111
## Installation
1212

@@ -15,15 +15,15 @@ A fast, zero-dependency MessagePack implementation written in Swift 3. Supports
1515
To use CocoaPods, add the following to your Podfile:
1616

1717
```ruby
18-
pod 'MessagePack.swift', '~> 2.1.0'
18+
pod 'MessagePack.swift', '~> 3.0'
1919
```
2020

2121
### Carthage
2222

2323
To use Carthage, add the following to your Cartfile:
2424

2525
```ogdl
26-
github "a2/MessagePack.swift" >= 2.1.0
26+
github "a2/MessagePack.swift" ~> 3.0
2727
```
2828

2929
### SPM (Swift Package Manager)
@@ -36,14 +36,16 @@ import PackageDescription
3636
let package = Package(
3737
name: "MyAwesomeApp",
3838
dependencies: [
39-
.Package(url: "https://github.com/a2/MessagePack.swift.git", majorVersion: 2, minor: 1),
39+
.Package(url: "https://github.com/a2/MessagePack.swift.git", majorVersion: 3),
4040
]
4141
)
4242
```
4343

4444
## Version
4545

46-
2.x supports Swift 3. Support for Swift 2 was dropped after [1.2.0](https://github.com/a2/MessagePack.swift/releases/tag/1.2.0).
46+
- Versions 3.x support Swift 4.
47+
- Support for Swift 3 was dropped after [2.1.1](https://github.com/a2/MessagePack.swift/releases/tag/2.1.1).
48+
- Support for Swift 2 was dropped after [1.2.0](https://github.com/a2/MessagePack.swift/releases/tag/1.2.0).
4749

4850
## Authors
4951

0 commit comments

Comments
 (0)