Skip to content

Commit

Permalink
Release 2.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hzalaz committed Jan 10, 2017
1 parent 43a640d commit dd5c7ca
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [2.0.0-rc.2](https://github.com/auth0/Lock.iOS-OSX/tree/2.0.0-rc.2) (2017-01-10)

**Added**
- Disable log in after sign up [\#365](https://github.com/auth0/Lock.iOS-OSX/pull/365) ([cocojoe](https://github.com/cocojoe))
- Allow to hide main screen title [\#362](https://github.com/auth0/Lock.iOS-OSX/pull/362) ([cocojoe](https://github.com/cocojoe))
- OIDC Conformant toggle [\#361](https://github.com/auth0/Lock.iOS-OSX/pull/361) ([cocojoe](https://github.com/cocojoe))

**Fixed**
- Clean memory leaks [\#364](https://github.com/auth0/Lock.iOS-OSX/pull/364) ([hzalaz](https://github.com/hzalaz))

## [2.0.0-rc.1](https://github.com/auth0/Lock.iOS-OSX/tree/2.0.0-rc.1) (2016-12-16)
[Full Changelog](https://github.com/auth0/Lock.iOS-OSX/compare/2.0.0-beta.2...2.0.0-rc.1)

Expand Down
2 changes: 1 addition & 1 deletion Lock.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# version = `agvtool mvers -terse1`.strip
version = '2.0.0-rc.1'
version = '2.0.0-rc.2'
Pod::Spec.new do |s|
s.name = "Lock"
s.version = version
Expand Down
2 changes: 1 addition & 1 deletion Lock/Lock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private func telemetryFor(authentication: Authentication, webAuth: WebAuth) -> (
// FIXME:- Uncomment when stable is ready since XCode wont' accept a tag in the version
// let bundle = _BundleHack.bundle
// let version = bundle.infoDictionary?["CFBundleShortVersionString"] as? String ?? "2.0.0-alpha.0"
let version = "2.0.0-rc.1"
let version = "2.0.0-rc.2"
authentication.using(inLibrary: name, version: version)
webAuth.using(inLibrary: name, version: version)
return (authentication, webAuth)
Expand Down
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,16 @@ Lock
$0.closable = false
}
.withStyle {
$0.title = "Company LLC"
$0.title = "Welcome to my App!"
}
.on { result in
switch result {
case .success(let credentials):
print("Obtained credentials \(credentials)")
case .failure(let cause):
print("Failed with \(cause)")
case .cancelled:
print("User cancelled")
}
.onAuth {
print("Obtained credentials \($0)")
}
.onError {
print("Failed with \($0)")
}
onCancel {
print("User cancelled")
}
.present(from: self)
```
Expand Down

0 comments on commit dd5c7ca

Please sign in to comment.