Skip to content

Commit fe4b083

Browse files
committed
Release 0.3.1
1 parent 1060554 commit fe4b083

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

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+
315
## [0.3.0](https://github.com/auth0/Guardian.swift/tree/0.3.0) (2017-06-02)
416
[Full Changelog](https://github.com/auth0/Guardian.swift/compare/0.2.0...0.3.0)
517

@@ -18,11 +30,11 @@
1830

1931
First release of Guardian for iOS
2032

21-
##Install
33+
## Install
2234

2335
#### CocoaPods
2436

25-
Guardian.swift is available through [CocoaPods](http://cocoapods.org).
37+
Guardian.swift is available through [CocoaPods](http://cocoapods.org).
2638
To install it, simply add the following line to your Podfile:
2739

2840
```ruby
@@ -74,7 +86,7 @@ Guardian
7486
keyPair: keyPair)
7587
.start { result in
7688
switch result {
77-
case .success(let enrollment):
89+
case .success(let enrollment):
7890
// success, we have the enrollment data available
7991
case .failure(let cause):
8092
// something failed, check cause to see what went wrong
@@ -95,7 +107,7 @@ let rsaKeyPair = RSAKeyPair.new(
95107
)
96108
```
97109

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.
99111
100112
> Since the keys are already secured stored inside iOS Keychain, you olny need to store the identifiers
101113
@@ -122,7 +134,7 @@ Guardian
122134
.allow(notification: notification)
123135
.start { result in
124136
switch result {
125-
case .success:
137+
case .success:
126138
// the auth request was successfuly allowed
127139
case .failure(let cause):
128140
// something failed, check cause to see what went wrong

Guardian/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.3.0</string>
18+
<string>0.3.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

GuardianApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.3.0</string>
18+
<string>0.3.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

GuardianTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.3.0</string>
18+
<string>0.3.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)