diff options
author | Mathias Bynens <mathias@qiwi.be> | 2016-04-05 22:31:04 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2016-04-05 22:31:04 +0200 |
commit | d2c219f6194f07de48543d4af8d5daf514f2ac0c (patch) | |
tree | 7f2f1b5a3649662c90ed8068dbcb2eda09d81545 | |
parent | c31d288b0a5b79d8797ee64d60b9a3b9f1aed33d (diff) | |
download | he-d2c219f6194f07de48543d4af8d5daf514f2ac0c.zip he-d2c219f6194f07de48543d4af8d5daf514f2ac0c.tar.gz he-d2c219f6194f07de48543d4af8d5daf514f2ac0c.tar.bz2 |
Release v1.1.0v1.1.0
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | he.js | 4 | ||||
-rw-r--r-- | package.json | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -1,6 +1,6 @@ { "name": "he", - "version": "1.0.0", + "version": "1.1.0", "main": "he.js", "ignore": [ "bin", diff --git a/component.json b/component.json index c71c2fd..2e63e45 100644 --- a/component.json +++ b/component.json @@ -1,6 +1,6 @@ { "name": "he", - "version": "1.0.0", + "version": "1.1.0", "description": "A robust HTML entities encoder/decoder with full Unicode support.", "repo": "mathiasbynens/he", "license": "MIT", @@ -1,4 +1,4 @@ -/*! https://mths.be/he v1.0.0 by @mathias | MIT license */ +/*! https://mths.be/he v1.1.0 by @mathias | MIT license */ ;(function(root) { // Detect free variables `exports`. @@ -310,7 +310,7 @@ /*--------------------------------------------------------------------------*/ var he = { - 'version': '1.0.0', + 'version': '1.1.0', 'encode': encode, 'decode': decode, 'escape': escape, diff --git a/package.json b/package.json index 13c5f89..16223f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "he", - "version": "1.0.0", + "version": "1.1.0", "description": "A robust HTML entities encoder/decoder with full Unicode support.", "homepage": "https://mths.be/he", "main": "he.js", |