Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hzalaz committed May 26, 2018
1 parent 1060554 commit fe4b083
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
22 changes: 17 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [0.3.1](https://github.com/auth0/Guardian.swift/tree/0.3.1) (2018-05-25)
[Full Changelog](https://github.com/auth0/Guardian.swift/compare/0.3.0...0.3.1)

**Closed issues**
- Turn off iOS HTTP cache [\#51](https://github.com/auth0/Guardian.swift/issues/51)

**Changed**
- Update project to latests tools and Xcode 9.3 [\#52](https://github.com/auth0/Guardian.swift/pull/52) ([hzalaz](https://github.com/hzalaz))

**Fixed**
- Disable NSURLSession cache [\#53](https://github.com/auth0/Guardian.swift/pull/53) ([hzalaz](https://github.com/hzalaz))

## [0.3.0](https://github.com/auth0/Guardian.swift/tree/0.3.0) (2017-06-02)
[Full Changelog](https://github.com/auth0/Guardian.swift/compare/0.2.0...0.3.0)

Expand All @@ -18,11 +30,11 @@

First release of Guardian for iOS

##Install
## Install

#### CocoaPods

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

```ruby
Expand Down Expand Up @@ -74,7 +86,7 @@ Guardian
keyPair: keyPair)
.start { result in
switch result {
case .success(let enrollment):
case .success(let enrollment):
// success, we have the enrollment data available
case .failure(let cause):
// something failed, check cause to see what went wrong
Expand All @@ -95,7 +107,7 @@ let rsaKeyPair = RSAKeyPair.new(
)
```

> The tags should be unique since it's the identifier of each key inside iOS Keychain.
> The tags should be unique since it's the identifier of each key inside iOS Keychain.
> Since the keys are already secured stored inside iOS Keychain, you olny need to store the identifiers
Expand All @@ -122,7 +134,7 @@ Guardian
.allow(notification: notification)
.start { result in
switch result {
case .success:
case .success:
// the auth request was successfuly allowed
case .failure(let cause):
// something failed, check cause to see what went wrong
Expand Down
2 changes: 1 addition & 1 deletion Guardian/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>0.3.0</string>
<string>0.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion GuardianApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.3.0</string>
<string>0.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion GuardianTests/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>0.3.0</string>
<string>0.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit fe4b083

Please sign in to comment.