Skip to content

Commit 36c97e3

Browse files
author
Pavel Pravosud
committed
2.2.0rc
1 parent 5cfcd49 commit 36c97e3

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -566,6 +566,11 @@ But of course you can just reassign `_` variable with `_.string`
566566
```javascript
567567
_ = _.string
568568
```
569+
### 2.2.0 ###
570+
571+
* Capitalize method behavior changed
572+
* Various perfomance tweaks
573+
569574
### 2.1.1###
570575

571576
* Fixed words method bug

lib/underscore.string.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Documentation: https://github.com/epeli/underscore.string
55
// Some code is borrowed from MooTools and Alexandru Marasteanu.
66

7-
// Version 2.1.1
7+
// Version 2.2.0rc
88

99
(function(root){
1010
'use strict';
@@ -175,7 +175,7 @@
175175

176176
var _s = {
177177

178-
VERSION: '2.1.1',
178+
VERSION: '2.2.0rc',
179179

180180
isBlank: function(str){
181181
return (/^\s*$/).test(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.1.1",
3+
"version": "2.2.0",
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)