Skip to content

Commit

Permalink
Version 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed Sep 2, 2015
1 parent 88fa91c commit 7ee3373
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

# Changelog

### 3.2.1

* Export `cleanDiacritics` in index.js

### 3.2.0

* Add `cleanDiacritics` [#444](https://github.com/epeli/underscore.string/pull/444)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "underscore.string",
"version": "3.2.0",
"version": "3.2.1",
"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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "underscore.string",
"repo": "epeli/underscore.string",
"description": "String manipulation extensions for Underscore.js javascript library",
"version": "3.2.0",
"version": "3.2.1",
"keywords": [
"underscore",
"string"
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
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.2.0'
// Version '3.2.1'

'use strict';

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

s.VERSION = '3.2.0';
s.VERSION = '3.2.1';

s.isBlank = require('./isBlank');
s.stripTags = require('./stripTags');
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Package.describe({
name: 'underscorestring:underscore.string',
summary: 'underscore.string (official): String manipulation extensions for Underscore.js javascript library.',
version: '3.2.0',
version: '3.2.1',
git: 'https://github.com/epeli/underscore.string.git',
documentation: 'README.markdown'
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "underscore.string",
"version": "3.2.0",
"version": "3.2.1",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down

0 comments on commit 7ee3373

Please sign in to comment.