Skip to content

Commit

Permalink
updated changelog and npm version for 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NappyPirate committed Jan 24, 2019
1 parent 75ee3fb commit 996e038
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
22 changes: 15 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

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.2.0",
"version": "1.3.0",
"description": "React Native biometric functionality for signing and encryption",
"main": "lib/index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 996e038

Please sign in to comment.