- updated change log

- incremented version for release
This commit is contained in:
Sefa Ilkimen 2016-12-07 15:32:18 +01:00
parent d90cefcbaa
commit 69cf4d0939
3 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## v1.5.0
- added cookie handling
- cookies are persisted via web storage API
## v1.4.0 ## v1.4.0
- forked from "cordova-plugin-http" v1.2.0 (see https://github.com/wymsee/cordova-HTTP) - forked from "cordova-plugin-http" v1.2.0 (see https://github.com/wymsee/cordova-HTTP)

View File

@ -1,9 +1,10 @@
{ {
"name": "cordova-plugin-advanced-http", "name": "cordova-plugin-advanced-http",
"version": "1.4.0", "version": "1.5.0",
"description": "Cordova / Phonegap plugin for communicating with HTTP servers using SSL pinning", "description": "Cordova / Phonegap plugin for communicating with HTTP servers using SSL pinning",
"scripts": { "scripts": {
"build": "cp node_modules/umd-tough-cookie/lib/umd-tough-cookie.js www/umd-tough-cookie.js" "build": "cp node_modules/umd-tough-cookie/lib/umd-tough-cookie.js www/umd-tough-cookie.js",
"prepublish": "npm run build"
}, },
"cordova": { "cordova": {
"id": "cordova-plugin-advanced-http", "id": "cordova-plugin-advanced-http",
@ -28,7 +29,7 @@
"engines": [ "engines": [
{ {
"name": "cordova", "name": "cordova",
"version": ">=3.0.0" "version": ">=4.0.0"
} }
], ],
"author": "Wymsee", "author": "Wymsee",

View File

@ -2,7 +2,7 @@
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-advanced-http" id="cordova-plugin-advanced-http"
version="1.4.0"> version="1.5.0">
<name>Advanced HTTP plugin</name> <name>Advanced HTTP plugin</name>
@ -11,7 +11,7 @@
</description> </description>
<engines> <engines>
<engine name="cordova" version=">=3.5.0" /> <engine name="cordova" version=">=4.0.0" />
</engines> </engines>
<dependency id="cordova-plugin-file" version=">=2.0.0" /> <dependency id="cordova-plugin-file" version=">=2.0.0" />