Skip to content

Commit

Permalink
Release 2.22.1 (#662)
Browse files Browse the repository at this point in the history
* Release 2.22.1

* Update Cartfile.resolved

* Add missing mocks

* Fix codecov glob pattern
  • Loading branch information
Widcket committed Apr 14, 2021
1 parent 5a7499e commit a13bb76
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 6 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.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [2.22.1](https://github.com/auth0/Lock.swift/tree/2.22.1) (2021-04-13)
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.22.0...2.22.1)

**Fixed**
- Fix LockViewController dismissal when presented as a popup [\#647](https://github.com/auth0/Lock.swift/pull/647) ([agirault](https://github.com/agirault))

## [2.22.0](https://github.com/auth0/Lock.swift/tree/2.22.0) (2021-03-09)
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.21.0...2.22.0

Expand Down
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github "AliSoftware/OHHTTPStubs" "9.1.0"
github "Quick/Nimble" "v9.0.0"
github "Quick/Quick" "v3.1.2"
github "auth0/Auth0.swift" "1.31.0"
github "auth0/Auth0.swift" "1.32.0"
github "auth0/JWTDecode.swift" "2.6.0"
github "auth0/SimpleKeychain" "0.12.2"
github "emaloney/CleanroomLogger" "7.0.0"
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>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
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.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 8 additions & 0 deletions LockTests/Utils/Mocks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,14 @@ class MockWebAuth: WebAuth {
self.maxAge = maxAge
return self
}

func invitationURL(_ invitationURL: URL) -> Self {
return self
}

func organization(_ organization: String) -> Self {
return self
}

func clearSession(federated: Bool, callback: @escaping (Bool) -> Void) {
callback(true)
Expand Down
2 changes: 1 addition & 1 deletion LockUITests/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.22.0</string>
<string>2.22.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ coverage:
range: "70...100"
ignore:
- Lock/OnePassword.swift
- LockTests/*
- LockTests/**/*
- App/*
status:
patch:
Expand Down

0 comments on commit a13bb76

Please sign in to comment.