From 996e038ddb861aa63f75365bbdd2ef0f6b094e3f Mon Sep 17 00:00:00 2001 From: Brandon Hines Date: Thu, 24 Jan 2019 16:16:17 -0600 Subject: [PATCH] updated changelog and npm version for 1.3.0 --- CHANGELOG.md | 22 +++++++++++++++------- README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38bf37e..200a5bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,28 +1,35 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.3.0] - 2019-1-24 +### Changed +- Removed src directory and moved index.js to the root +- Made sure all android error messages start with a capital letter +### Added +- Added a function for simply displaying a biometric prompt + ## [1.2.0] - 2018-11-29 ### Changed -- upgraded default android SDK version to 28 -- upgraded gradle version and added the gradle wrapper -- removed npmignore files in favor of gitignore +- Upgraded default android SDK version to 28 +- Upgraded gradle version and added the gradle wrapper +- Removed npmignore files in favor of gitignore ### Added - Added the ability to override android SDK and build versions using gradle extra properties extension ## [1.1.3] - 2018-08-09 ### Changed -- fixed typo in readme -- fixed reported security issues from npm +- Fixed typo in readme +- Fixed reported security issues from npm ### Added - Added type script definitions ## [1.1.2] - 2018-06-14 ### Changed -- fixed public key format in iOS +- Fixed public key format in iOS ## [1.1.1] - 2018-06-11 ### Changed -- fixed potential null pointer exception that could occur from saved android dialog fragments +- Fixed potential null pointer exception that could occur from saved android dialog fragments ## [1.1.0] - 2018-05-03 ### Added @@ -49,3 +56,4 @@ All notable changes to this project will be documented in this file. [1.1.2]: https://github.com/SelfLender/react-native-biometrics/compare/1.1.1...1.1.2 [1.1.3]: https://github.com/SelfLender/react-native-biometrics/compare/1.1.2...1.1.3 [1.2.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.1.3...1.2.0 +[1.3.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.2.0...1.3.0 diff --git a/README.md b/README.md index af5875e..280bc58 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ Biometrics.createSignature('Sign in', payload) ### simplePrompt(promptMessage) -Prompts the user for their fingerprint or face id. Returns a 'Promise' that resolves if the user provides a valid fingerprint or face id, otherwise the promise rejects. +Prompts the user for their fingerprint or face id. Returns a `Promise` that resolves if the user provides a valid fingerprint or face id, otherwise the promise rejects. NOTE: This only validates a user's biometrics. This should not be used to log a user in or authenticate with a server, instead use `createSignature`. It should only be used to gate certain user actions within an app. diff --git a/package-lock.json b/package-lock.json index ad29549..a25bfd3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "react-native-biometrics", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1f82aff..17cb94c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-biometrics", - "version": "1.2.0", + "version": "1.3.0", "description": "React Native biometric functionality for signing and encryption", "main": "lib/index.js", "types": "index.d.ts",