Skip to content

Commit 4cec811

Browse files
authored
Release 2.20.0 (#642)
1 parent 3f8b253 commit 4cec811

File tree

7 files changed

+27
-21
lines changed

7 files changed

+27
-21
lines changed

App/Info.plist

+1-1
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>2.19.1</string>
18+
<string>2.20.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleURLTypes</key>

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [2.20.0](https://github.com/auth0/Lock.swift/tree/2.20.0) (2020-10-22)
4+
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.19.1...2.20.0
5+
6+
**Changed**
7+
- Updated Quick and Nimble [\#641](https://github.com/auth0/Lock.swift/pull/641) ([Widcket](https://github.com/Widcket))
8+
39
## [2.19.1](https://github.com/auth0/Lock.swift/tree/2.19.1) (2020-10-05)
410
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.19.0...2.19.1
511

Gemfile.lock

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
CFPropertyList (3.0.2)
5-
activesupport (4.2.11.3)
6-
i18n (~> 0.7)
5+
activesupport (5.2.4.4)
6+
concurrent-ruby (~> 1.0, >= 1.0.2)
7+
i18n (>= 0.7, < 2)
78
minitest (~> 5.1)
8-
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
1010
addressable (2.7.0)
1111
public_suffix (>= 2.0.2, < 5.0)
@@ -14,7 +14,7 @@ GEM
1414
json (>= 1.5.1)
1515
atomos (0.1.3)
1616
aws-eventstream (1.1.0)
17-
aws-partitions (1.383.0)
17+
aws-partitions (1.384.0)
1818
aws-sdk-core (3.109.1)
1919
aws-eventstream (~> 1, >= 1.0.2)
2020
aws-partitions (~> 1, >= 1.239.0)
@@ -31,15 +31,14 @@ GEM
3131
aws-eventstream (~> 1, >= 1.0.2)
3232
babosa (1.0.4)
3333
claide (1.0.3)
34-
cocoapods (1.9.3)
35-
activesupport (>= 4.0.2, < 5)
34+
cocoapods (1.10.0)
35+
addressable (~> 2.6)
3636
claide (>= 1.0.2, < 2.0)
37-
cocoapods-core (= 1.9.3)
37+
cocoapods-core (= 1.10.0)
3838
cocoapods-deintegrate (>= 1.0.3, < 2.0)
39-
cocoapods-downloader (>= 1.2.2, < 2.0)
39+
cocoapods-downloader (>= 1.4.0, < 2.0)
4040
cocoapods-plugins (>= 1.0.0, < 2.0)
4141
cocoapods-search (>= 1.0.0, < 2.0)
42-
cocoapods-stats (>= 1.0.0, < 2.0)
4342
cocoapods-trunk (>= 1.4.0, < 2.0)
4443
cocoapods-try (>= 1.1.0, < 2.0)
4544
colored2 (~> 3.1)
@@ -49,21 +48,22 @@ GEM
4948
molinillo (~> 0.6.6)
5049
nap (~> 1.0)
5150
ruby-macho (~> 1.4)
52-
xcodeproj (>= 1.14.0, < 2.0)
53-
cocoapods-core (1.9.3)
54-
activesupport (>= 4.0.2, < 6)
51+
xcodeproj (>= 1.19.0, < 2.0)
52+
cocoapods-core (1.10.0)
53+
activesupport (> 5.0, < 6)
54+
addressable (~> 2.6)
5555
algoliasearch (~> 1.0)
5656
concurrent-ruby (~> 1.1)
5757
fuzzy_match (~> 2.0.4)
5858
nap (~> 1.0)
5959
netrc (~> 0.11)
60+
public_suffix
6061
typhoeus (~> 1.0)
6162
cocoapods-deintegrate (1.0.4)
6263
cocoapods-downloader (1.4.0)
6364
cocoapods-plugins (1.0.0)
6465
nap
6566
cocoapods-search (1.0.0)
66-
cocoapods-stats (1.1.0)
6767
cocoapods-trunk (1.5.0)
6868
nap (>= 0.8, < 2.0)
6969
netrc (~> 0.11)
@@ -168,7 +168,7 @@ GEM
168168
http-cookie (1.0.3)
169169
domain_name (~> 0.5)
170170
httpclient (2.8.3)
171-
i18n (0.9.5)
171+
i18n (1.8.5)
172172
concurrent-ruby (~> 1.0)
173173
jmespath (1.4.0)
174174
json (2.3.1)

Lock/Info.plist

+1-1
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>2.19.1</string>
18+
<string>2.20.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LockTests/Info.plist

+1-1
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>2.19.1</string>
18+
<string>2.20.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LockUITests/Info.plist

+1-1
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>2.19.1</string>
18+
<string>2.20.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Need help migrating from v1? Please check our [Migration Guide](MIGRATION.md).
3737

3838
- iOS 9+
3939
- Xcode 11.4+ / 12.x
40-
- Swift 4.x/5.x
40+
- Swift 4.x / 5.x
4141

4242
## Installation
4343

@@ -46,7 +46,7 @@ Need help migrating from v1? Please check our [Migration Guide](MIGRATION.md).
4646
If you are using [Cocoapods](https://cocoapods.org), add this line to your `Podfile`:
4747

4848
```ruby
49-
pod "Lock", "~> 2.19"
49+
pod "Lock", "~> 2.20"
5050
```
5151

5252
Then run `pod install`.
@@ -58,7 +58,7 @@ Then run `pod install`.
5858
If you are using [Carthage](https://github.com/Carthage/Carthage), add the following line to your `Cartfile`:
5959

6060
```ruby
61-
github "auth0/Lock.swift" ~> 2.19
61+
github "auth0/Lock.swift" ~> 2.20
6262
```
6363

6464
Then run `carthage bootstrap`.

0 commit comments

Comments
 (0)