From d4ba845edcea10ccd6d1faf2e0500c12217669d5 Mon Sep 17 00:00:00 2001 From: Brandon Hines Date: Wed, 20 Nov 2019 18:05:10 -0600 Subject: [PATCH] updated version and changelog for 2.1.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 2 +- package.json | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a034c..a274ee1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.1.0] - 2019-11-20 +## Changed +- Refactored the javascript portion of the library into typescript + ## [2.0.0] - 2019-11-19 ### Breaking - Requires React Native 0.60+ for androidx compatibility @@ -111,3 +115,4 @@ All notable changes to this project will be documented in this file. [1.6.1]: https://github.com/SelfLender/react-native-biometrics/compare/1.6.0...1.6.1 [1.7.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.6.1...1.7.0 [2.0.0]: https://github.com/SelfLender/react-native-biometrics/compare/1.7.0...2.0.0 +[2.1.0]: https://github.com/SelfLender/react-native-biometrics/compare/2.0.0...2.1.0 diff --git a/package-lock.json b/package-lock.json index b04002b..d04e2af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "react-native-biometrics", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index eae6ffb..9983caa 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "react-native-biometrics", - "version": "2.0.0", + "version": "2.1.0", "summary": "A React Native library for biometrics", "description": "React Native biometric functionality for signing and encryption", "main": "build/cjs/index.js", "module": "build/esm/index.js", "types": "build/esm/index.d.ts", "scripts": { - "clean": "rm -rf lib && rm -rf node_modules && npm install", + "clean": "rm -rf build && rm -rf node_modules && npm install", "build": "npm run build:cjs && npm run build:esm", "build:cjs": "tsc --target es5 --outDir build/cjs --module commonjs", "build:esm": "tsc --target es5 --outDir build/esm --module esnext",