Skip to content

Commit

Permalink
Release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed Jan 25, 2015
1 parent dd304fc commit 4252b69
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.markdown
@@ -1,6 +1,10 @@

# Changelog

### 3.0.2

* Fix .gitignore for bower [#400](https://github.com/epeli/underscore.string/issues/400)

### 3.0.1

* Minor fixes in the documentation [#390](https://github.com/epeli/underscore.string/pull/390) and [5135cb9](https://github.com/epeli/underscore.string/commit/5135cb9026034e9ea206c2ed8588db1eeb3ce95a)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "underscore.string",
"version": "3.0.1",
"version": "3.0.2",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion component.json
Expand Up @@ -2,7 +2,7 @@
"name": "underscore.string",
"repo": "epeli/underscore.string",
"description": "String manipulation extensions for Underscore.js javascript library",
"version": "3.0.1",
"version": "3.0.2",
"keywords": [
"underscore",
"string"
Expand Down
4 changes: 2 additions & 2 deletions dist/underscore.string.js
Expand Up @@ -169,7 +169,7 @@ module.exports = function() {
// Underscore.string is freely distributable under the terms of the MIT license.
// Documentation: https://github.com/epeli/underscore.string
// Some code is borrowed from MooTools and Alexandru Marasteanu.
// Version '3.0.1'
// Version '3.0.2'

'use strict';

Expand All @@ -179,7 +179,7 @@ function s(value) {
this._wrapped = value;
}

s.VERSION = '3.0.1';
s.VERSION = '3.0.2';

s.isBlank = _dereq_('./isBlank');
s.stripTags = _dereq_('./stripTags');
Expand Down
2 changes: 1 addition & 1 deletion dist/underscore.string.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -3,7 +3,7 @@
// Underscore.string is freely distributable under the terms of the MIT license.
// Documentation: https://github.com/epeli/underscore.string
// Some code is borrowed from MooTools and Alexandru Marasteanu.
// Version '3.0.1'
// Version '3.0.2'

'use strict';

Expand All @@ -13,7 +13,7 @@ function s(value) {
this._wrapped = value;
}

s.VERSION = '3.0.1';
s.VERSION = '3.0.2';

s.isBlank = require('./isBlank');
s.stripTags = require('./stripTags');
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "underscore.string",
"version": "3.0.1",
"version": "3.0.2",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down

0 comments on commit 4252b69

Please sign in to comment.