Merge pull request #51 from TouchInstinct/biometrics_service_upgrade

Add public init to biometricsService
This commit is contained in:
Aliona 2018-07-24 18:24:04 +03:00 committed by GitHub
commit b6c8200015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# Changelog
### 0.3.3
- **Add**: Public `init` to `BiometricsService`
### 0.3.2
- **Add**: functions to `BasePassCodeViewController` to make `fakeTextField` become and resign first responder

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "LeadKitAdditions"
s.version = "0.3.2"
s.version = "0.3.3"
s.summary = "iOS framework with a bunch of tools for rapid development"
s.homepage = "https://github.com/TouchInstinct/LeadKitAdditions"
s.license = "Apache License, Version 2.0"

View File

@ -64,4 +64,6 @@ public final class BiometricsService {
}
}
public init() {}
}