Skip to content

Commit 69cf4d0

Browse files
author
Sefa Ilkimen
committed
- updated change log
- incremented version for release
1 parent d90cefc commit 69cf4d0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.5.0
4+
5+
- added cookie handling
6+
- cookies are persisted via web storage API
7+
38
## v1.4.0
49

510
- forked from "cordova-plugin-http" v1.2.0 (see https://github.com/wymsee/cordova-HTTP)

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "cordova-plugin-advanced-http",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"description": "Cordova / Phonegap plugin for communicating with HTTP servers using SSL pinning",
55
"scripts": {
6-
"build": "cp node_modules/umd-tough-cookie/lib/umd-tough-cookie.js www/umd-tough-cookie.js"
6+
"build": "cp node_modules/umd-tough-cookie/lib/umd-tough-cookie.js www/umd-tough-cookie.js",
7+
"prepublish": "npm run build"
78
},
89
"cordova": {
910
"id": "cordova-plugin-advanced-http",
@@ -28,7 +29,7 @@
2829
"engines": [
2930
{
3031
"name": "cordova",
31-
"version": ">=3.0.0"
32+
"version": ">=4.0.0"
3233
}
3334
],
3435
"author": "Wymsee",

plugin.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="cordova-plugin-advanced-http"
5-
version="1.4.0">
5+
version="1.5.0">
66

77
<name>Advanced HTTP plugin</name>
88

@@ -11,7 +11,7 @@
1111
</description>
1212

1313
<engines>
14-
<engine name="cordova" version=">=3.5.0" />
14+
<engine name="cordova" version=">=4.0.0" />
1515
</engines>
1616

1717
<dependency id="cordova-plugin-file" version=">=2.0.0" />

0 commit comments

Comments
 (0)