Skip to content

Commit 9a30eed

Browse files
committed
3.1.2
1 parent a136389 commit 9a30eed

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.1.2 / 2015-05-29
2+
-------------------
3+
4+
- fix `extendPrototype()` method
5+
6+
17
3.1.1 / 2015-03-26
28
------------------
39
- hack to work around the improper behavior (modifying of string prototype) of [shelljs](https://github.com/arturadib/shelljs)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping HTML, decoding HTML entities, stripping tags, etc.",
55
"keywords": [
66
"string",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string.js",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping HTML, decoding HTML entities, stripping tags, etc.",
55
"repo": "jprichardson/string.js",
66
"keywords": [

dist/string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ string.js - Copyright (C) 2012-2014, JP Richardson <[email protected]>
2020
!(function() {
2121
"use strict";
2222

23-
var VERSION = '3.1.1';
23+
var VERSION = '3.1.2';
2424

2525
var ENTITIES = {};
2626

dist/string.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ string.js - Copyright (C) 2012-2014, JP Richardson <[email protected]>
55
!(function() {
66
"use strict";
77

8-
var VERSION = '3.1.1';
8+
var VERSION = '3.1.2';
99

1010
var ENTITIES = {};
1111

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping html, decoding html entities, stripping tags, etc.",
55
"homepage": "http://stringjs.com",
66
"repository": {

0 commit comments

Comments
 (0)