Skip to content

Commit 1bb6943

Browse files
committed
Update README.md
1 parent 23bad01 commit 1bb6943

File tree

1 file changed

+10
-38
lines changed

1 file changed

+10
-38
lines changed

README.md

Lines changed: 10 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -12,40 +12,22 @@ Valet lets you securely store data in the iOS, tvOS, watchOS, or macOS Keychain
1212

1313
## Getting Started
1414

15-
### CocoaPods
16-
17-
Install with [CocoaPods](http://cocoapods.org) by adding the following to your `Podfile`:
18-
19-
on iOS:
20-
21-
```
22-
platform :ios, '12.0'
23-
use_frameworks!
24-
pod 'Valet'
25-
```
15+
### Swift Package Manager
2616

27-
on tvOS:
17+
Install with [Swift Package Manager](https://github.com/apple/swift-package-manager) by adding the following to your `Package.swift`:
2818

19+
```swift
20+
dependencies: [
21+
.package(url: "https://github.com/Square/Valet", from: "5.0.0"),
22+
],
2923
```
30-
platform :tvos, '12.0'
31-
use_frameworks!
32-
pod 'Valet'
33-
```
34-
35-
on watchOS:
3624

37-
```
38-
platform :watchos, '4.0'
39-
use_frameworks!
40-
pod 'Valet'
41-
```
25+
### CocoaPods
4226

43-
on macOS:
27+
Install with [CocoaPods](http://cocoapods.org) by adding the following to your `Podfile`:
4428

4529
```
46-
platform :osx, '10.13'
47-
use_frameworks!
48-
pod 'Valet'
30+
pod 'Valet', '~> 5.0.0'
4931
```
5032

5133
### Carthage
@@ -58,23 +40,13 @@ github "Square/Valet"
5840

5941
Run `carthage` to build the framework and drag the built `Valet.framework` into your Xcode project.
6042

61-
### Swift Package Manager
62-
63-
Install with [Swift Package Manager](https://github.com/apple/swift-package-manager) by adding the following to your `Package.swift`:
64-
65-
```swift
66-
dependencies: [
67-
.package(url: "https://github.com/Square/Valet", from: "5.0.0"),
68-
],
69-
```
70-
7143
### Submodules
7244

7345
Or manually checkout the submodule with `git submodule add git@github.com:Square/Valet.git`, drag Valet.xcodeproj to your project, and add Valet as a build dependency.
7446

7547
## Usage
7648

77-
Prefer to learn via watching a video? Check out [this video tutorial](https://www.youtube.com/watch?v=E2Z8BBARlvs&list=PL_csAAO9PQ8Z9QxzfRxpN1YrVHXmncTSU&index=3).
49+
Prefer to learn via watching a video? Check out [this video tutorial](https://www.youtube.com/watch?v=E2Z8BBARlvs&list=PL_csAAO9PQ8Z9QxzfRxpN1YrVHXmncTSU&index=3). Note that this video was recorded during the Valet 4 release.
7850

7951
### Basic Initialization
8052

0 commit comments

Comments
 (0)