1
1
# Change Log
2
2
3
+ ## [ 0.3.1] ( https://github.com/auth0/Guardian.swift/tree/0.3.1 ) (2018-05-25)
4
+ [ Full Changelog] ( https://github.com/auth0/Guardian.swift/compare/0.3.0...0.3.1 )
5
+
6
+ ** Closed issues**
7
+ - Turn off iOS HTTP cache [ \# 51] ( https://github.com/auth0/Guardian.swift/issues/51 )
8
+
9
+ ** Changed**
10
+ - Update project to latests tools and Xcode 9.3 [ \# 52] ( https://github.com/auth0/Guardian.swift/pull/52 ) ([ hzalaz] ( https://github.com/hzalaz ) )
11
+
12
+ ** Fixed**
13
+ - Disable NSURLSession cache [ \# 53] ( https://github.com/auth0/Guardian.swift/pull/53 ) ([ hzalaz] ( https://github.com/hzalaz ) )
14
+
3
15
## [ 0.3.0] ( https://github.com/auth0/Guardian.swift/tree/0.3.0 ) (2017-06-02)
4
16
[ Full Changelog] ( https://github.com/auth0/Guardian.swift/compare/0.2.0...0.3.0 )
5
17
18
30
19
31
First release of Guardian for iOS
20
32
21
- ##Install
33
+ ## Install
22
34
23
35
#### CocoaPods
24
36
25
- Guardian.swift is available through [ CocoaPods] ( http://cocoapods.org ) .
37
+ Guardian.swift is available through [ CocoaPods] ( http://cocoapods.org ) .
26
38
To install it, simply add the following line to your Podfile:
27
39
28
40
``` ruby
@@ -74,7 +86,7 @@ Guardian
74
86
keyPair : keyPair)
75
87
.start { result in
76
88
switch result {
77
- case .success (let enrollment):
89
+ case .success (let enrollment):
78
90
// success, we have the enrollment data available
79
91
case .failure (let cause):
80
92
// something failed, check cause to see what went wrong
@@ -95,7 +107,7 @@ let rsaKeyPair = RSAKeyPair.new(
95
107
)
96
108
```
97
109
98
- > The tags should be unique since it's the identifier of each key inside iOS Keychain.
110
+ > The tags should be unique since it's the identifier of each key inside iOS Keychain.
99
111
100
112
> Since the keys are already secured stored inside iOS Keychain, you olny need to store the identifiers
101
113
@@ -122,7 +134,7 @@ Guardian
122
134
.allow (notification : notification)
123
135
.start { result in
124
136
switch result {
125
- case .success :
137
+ case .success :
126
138
// the auth request was successfuly allowed
127
139
case .failure (let cause):
128
140
// something failed, check cause to see what went wrong
0 commit comments