Skip to content

Commit

Permalink
Release 2.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hzalaz committed Sep 21, 2016
1 parent 6b65664 commit 6ef936f
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion App/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>2.0.0</string>
<string>2.0.0-beta.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

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

**Added**
- Username validation improvements [\#324](https://github.com/auth0/Lock.iOS-OSX/pull/324) ([hzalaz](https://github.com/hzalaz))
- Custom oauth2 style [\#318](https://github.com/auth0/Lock.iOS-OSX/pull/318) ([hzalaz](https://github.com/hzalaz))
- Custom Sign up fields [\#316](https://github.com/auth0/Lock.iOS-OSX/pull/316) ([hzalaz](https://github.com/hzalaz))
- Include more lock options [\#313](https://github.com/auth0/Lock.iOS-OSX/pull/313) ([hzalaz](https://github.com/hzalaz))
- Introduce Lock Style [\#312](https://github.com/auth0/Lock.iOS-OSX/pull/312) ([hzalaz](https://github.com/hzalaz))
- Blur Header background [\#311](https://github.com/auth0/Lock.iOS-OSX/pull/311) ([hzalaz](https://github.com/hzalaz))
- Load connections from Auth0 [\#310](https://github.com/auth0/Lock.iOS-OSX/pull/310) ([hzalaz](https://github.com/hzalaz))

## [2.0.0-beta.1](https://github.com/auth0/Lock.iOS-OSX/tree/2.0.0-beta.1) (2016-08-19)
[Full Changelog](https://github.com/auth0/Lock.iOS-OSX/compare/f506b849083d9dc24c6d4236b3064d7cde7eac4e...2.0.0-beta.1)

Expand Down
4 changes: 2 additions & 2 deletions 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-beta.1'
version = '2.0.0-beta.2'
Pod::Spec.new do |s|
s.name = "Lock"
s.version = version
Expand All @@ -20,7 +20,7 @@ Auth0 is a SaaS that helps you with Authentication and Authorization. You can us
s.requires_arc = true


s.dependency 'Auth0', '1.0.0-rc.1'
s.dependency 'Auth0', '1.0.0-rc.3'
s.default_subspecs = 'Classic'

s.subspec 'Classic' do |classic|
Expand Down
2 changes: 1 addition & 1 deletion Lock/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>2.0.0</string>
<string>2.0.0-beta.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Lock/Lock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ private func telemetryFor(authenticaction authentication: Authentication, webAut
// 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-beta.1"
let version = "2.0.0-beta.2"
authentication.using(in: name, version: version)
webAuth.using(in: name, version: version)
return (authentication, webAuth)
Expand Down
2 changes: 1 addition & 1 deletion LockTests/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>2.0.0</string>
<string>2.0.0-beta.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,17 @@ Lock makes it easy to integrate SSO in your app. You won't have to worry about:
## Requirements

- iOS 9 or later
- Xcode 7.3 or later
- Xcode 8
- Swift 2.3

## Install

### CocoaPods

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

```ruby
pod "Lock", "~> 2.0.0-beta.1"
```

### Carthage

In your cartfile add

```
github "auth0/Lock.iOS-OSX" "2.0.0-beta.1"
github "auth0/Lock.iOS-OSX" "2.0.0-beta.2"
```

## Usage
Expand Down

0 comments on commit 6ef936f

Please sign in to comment.