diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e28105..125494b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/LeadKitAdditions.podspec b/LeadKitAdditions.podspec index 464da23..60dba35 100644 --- a/LeadKitAdditions.podspec +++ b/LeadKitAdditions.podspec @@ -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" diff --git a/Sources/Services/BiometricsService.swift b/Sources/Services/BiometricsService.swift index 504045f..31e1030 100644 --- a/Sources/Services/BiometricsService.swift +++ b/Sources/Services/BiometricsService.swift @@ -64,4 +64,6 @@ public final class BiometricsService { } } + public init() {} + }