Skip to content

Commit ea91a44

Browse files
author
Christoph Hermann
committed
bump 3.1.1
1 parent bb9b62e commit ea91a44

File tree

8 files changed

+14
-9
lines changed

8 files changed

+14
-9
lines changed

CHANGELOG.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11

22
# Changelog
33

4+
### 3.1.1
5+
6+
* Add coverage folder to npmignore
7+
* [Full changelog](https://github.com/epeli/underscore.string/compare/3.1.0...3.1.1)
8+
49
### 3.1.0
510

611
* Meteor integration [baeb0da](https://github.com/epeli/underscore.string/commit/baeb0da0053549e5346184630a7e0c5007b8be4f)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore.string",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "String manipulation extensions for Underscore.js javascript library.",
55
"homepage": "http://epeli.github.com/underscore.string/",
66
"contributors": [

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "underscore.string",
33
"repo": "epeli/underscore.string",
44
"description": "String manipulation extensions for Underscore.js javascript library",
5-
"version": "3.1.0",
5+
"version": "3.1.1",
66
"keywords": [
77
"underscore",
88
"string"

dist/underscore.string.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ module.exports = function() {
166166
// Underscore.string is freely distributable under the terms of the MIT license.
167167
// Documentation: https://github.com/epeli/underscore.string
168168
// Some code is borrowed from MooTools and Alexandru Marasteanu.
169-
// Version '3.1.0'
169+
// Version '3.1.1'
170170

171171
'use strict';
172172

@@ -176,7 +176,7 @@ function s(value) {
176176
this._wrapped = value;
177177
}
178178

179-
s.VERSION = '3.1.0';
179+
s.VERSION = '3.1.1';
180180

181181
s.isBlank = _dereq_('./isBlank');
182182
s.stripTags = _dereq_('./stripTags');

dist/underscore.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.

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Underscore.string is freely distributable under the terms of the MIT license.
44
// Documentation: https://github.com/epeli/underscore.string
55
// Some code is borrowed from MooTools and Alexandru Marasteanu.
6-
// Version '3.1.0'
6+
// Version '3.1.1'
77

88
'use strict';
99

@@ -13,7 +13,7 @@ function s(value) {
1313
this._wrapped = value;
1414
}
1515

16-
s.VERSION = '3.1.0';
16+
s.VERSION = '3.1.1';
1717

1818
s.isBlank = require('./isBlank');
1919
s.stripTags = require('./stripTags');

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Package.describe({
44
name: 'underscorestring:underscore.string',
55
summary: 'underscore.string (official): String manipulation extensions for Underscore.js javascript library.',
6-
version: '3.1.0',
6+
version: '3.1.1',
77
git: 'https://github.com/epeli/underscore.string.git',
88
documentation: 'README.markdown'
99
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore.string",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "String manipulation extensions for Underscore.js javascript library.",
55
"homepage": "http://epeli.github.com/underscore.string/",
66
"contributors": [

0 commit comments

Comments
 (0)