Skip to content

Commit bf2c6f4

Browse files
committed
chore: bump package version to 10.2.0.
1 parent 1aa7f3d commit bf2c6f4

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [10.2.0] - 2026-03-03
2+
3+
* Enhance biometric key security on iOS/macOS.
4+
* Enforce CryptoObject usage for Android signatures.
5+
* Add Android ProGuard rules.
6+
17
## [10.1.0] - 2026-02-19
28

39
* Added Swift Package Manager (SPM) support for iOS and macOS plugin integration.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ To get started with Biometric Signature, follow these steps:
168168

169169
```yaml
170170
dependencies:
171-
biometric_signature: ^10.1.0
171+
biometric_signature: ^10.2.0
172172
```
173173
174174
| | Android | iOS | macOS | Windows |

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class MyApp extends StatelessWidget {
2323
return MaterialApp(
2424
theme: ThemeData(useMaterial3: true, colorSchemeSeed: Colors.blue),
2525
home: Scaffold(
26-
appBar: AppBar(title: const Text('Biometric Signature v10.1.0')),
26+
appBar: AppBar(title: const Text('Biometric Signature v10.2.0')),
2727
body: const ExampleAppBody(),
2828
),
2929
);

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ packages:
3131
path: ".."
3232
relative: true
3333
source: path
34-
version: "10.1.0"
34+
version: "10.2.0"
3535
boolean_selector:
3636
dependency: transitive
3737
description:

ios/biometric_signature.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'biometric_signature'
7-
s.version = '10.1.0'
7+
s.version = '10.2.0'
88
s.summary = 'Hardware-backed biometric signatures for Flutter.'
99
s.description = <<-DESC
1010
Create cryptographic signatures using Secure Enclave, StrongBox, and Windows Hello.

macos/biometric_signature.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'biometric_signature'
7-
s.version = '10.1.0'
7+
s.version = '10.2.0'
88
s.summary = 'Hardware-backed biometric signatures for Flutter.'
99
s.description = <<-DESC
1010
Create cryptographic signatures using Secure Enclave, StrongBox, and Windows Hello.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: biometric_signature
22
description: Hardware-backed biometric authentication for Flutter (Android, iOS, macOS, Windows). Create cryptographic signatures using Secure Enclave, StrongBox, and Windows Hello.
33
topics: [biometrics, secure-enclave, strongbox, rsa, ecdsa]
4-
version: 10.1.0
4+
version: 10.2.0
55
homepage: https://github.com/chamodanethra/biometric_signature
66

77
environment:

0 commit comments

Comments
 (0)