Skip to content

Commit

Permalink
Updated version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Nov 12, 2020
1 parent 8629a04 commit 9dd77e9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## Version 2.0.0

* VERIFF.start method requires the Veriff **verification URL** instead of the token
* The response of the Veriff process is a JSON object.

```javascript
{
"status": string // "VeriffSDK.Status" [DONE , CANCELED or ERROR]
"message": string // Detailed message
}
```

### Android

* Updated Veriff SDK to version **3.6.0**
* Required Android 5.1 or upper

### iOS

* Updated Veriff SDK to version **4.1.0**

## Version 1.1.0

### Android
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "cordova-plugin-veriff",
"version": "1.1.0",
"main": "dist/veriff.js",
"version": "2.0.0",
"description": "Cordova plugin exposing Veriff SDK",
"scripts": {
"build": "webpack -p"
Expand Down Expand Up @@ -45,6 +44,7 @@
"ios"
],
"author": "Carlos Santos Morales",
"maintainers": ["Carlos Santos Morales(CSantosM)"],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CSantosM/cordova-plugin-veriff/issues"
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<plugin id="cordova-plugin-veriff" version="1.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-veriff" version="2.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<name>cordova-plugin-veriff</name>
<description>Cordova plugin exposing Veriff SDK</description>
Expand Down

0 comments on commit 9dd77e9

Please sign in to comment.