Skip to content

Commit

Permalink
updated changelog and version for 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NappyPirate committed Jul 11, 2019
1 parent db554e7 commit a3c4165
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.6.0] - 2019-7-10
### Changed
- Disabled use password option on iOS by default
- Detected if keys exists before trying to delete them and returned false in promise result in order to prevent error from occurring

## [1.5.2] - 2019-5-9
### Changed
- Fixed android compilation error by re-organizing order of gradle repositories
Expand Down Expand Up @@ -80,3 +85,4 @@ All notable changes to this project will be documented in this file.
[1.5.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.4.0...1.5.0
[1.5.1]: https://github.com/SelfLender/react-native-biometrics/compare/1.5.0...1.5.1
[1.5.2]: https://github.com/SelfLender/react-native-biometrics/compare/1.5.1...1.5.2
[1.6.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.5.2...1.6.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ This package requires an iOS target SDK verion of iOS 10 or higher

Ensure that you have the `NSFaceIDUsageDescription` entry set in your react native iOS project, or Face ID will not work properly. This description will be will be presented to the user the first time a biometrics action is taken, and the user will be asked if they want to allow the app to use Face ID. If the user declines the usage of face id for the app, the `isSensorAvailable` function will return `null` until the face id permission is specifically allowed for the app by the user.

NOTE: No biometric prompt is displayed in iOS simulators when attempting to retrieve keys for signature generation, it only occurs on actual devices.

#### Android

This package requires a compiled SDK version of 23 (Android 6.0 Marshmallow) or higher
Expand Down Expand Up @@ -154,6 +152,8 @@ Biometrics.deleteKeys()

Prompts the user for their fingerprint or face id in order to retrieve the private key from the keystore, then uses the private key to generate a RSA PKCS#1v1.5 SHA 256 signature. Returns a `Promise` that resolves to a base64 encoded string representing the signature.

NOTE: No biometric prompt is displayed in iOS simulators when attempting to retrieve keys for signature generation, it only occurs on actual devices.

__Arguments__

- `promptMessage` - string that will be displayed in the fingerprint or face id prompt
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-biometrics",
"version": "1.5.2",
"version": "1.6.0",
"summary": "A React Native library for biometrics",
"description": "React Native biometric functionality for signing and encryption",
"main": "lib/index.js",
Expand Down

0 comments on commit a3c4165

Please sign in to comment.