Skip to content

Commit 577f0c7

Browse files
committed
v 2.3.1
1 parent 68ad492 commit 577f0c7

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,13 @@ _ = _.string
630630

631631
## Changelog ##
632632

633+
### 2.3.1 ###
634+
635+
* Changed integration logic, now trying everything in order
636+
* Fixed classify method to chew some unexpected input
637+
* Fixed toNumber method failing to recognize '0.0' as a proper number
638+
639+
633640
### 2.3.0 ###
634641

635642
* Added `numberformat` method

lib/underscore.string.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 '2.3.0'
6+
// Version '2.3.1'
77

88
!function(root, String){
99
'use strict';
@@ -177,7 +177,7 @@
177177

178178
var _s = {
179179

180-
VERSION: '2.3.0',
180+
VERSION: '2.3.1',
181181

182182
isBlank: function(str){
183183
if (str == null) str = '';

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": "2.3.0",
3+
"version": "2.3.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)