Skip to content

Commit

Permalink
Preparing for 2.3.0 release, adding readme stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rwz committed Sep 16, 2012
1 parent b4986b9 commit 6323fb9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,15 @@ _ = _.string

## Changelog ##

### 2.3.0 ###

* Added `numberformat` method
* Added `levenshtein` method (Levenshtein distance calculation)
* Added `swapCase` method
* Changed default behavior of `words` method
* Added `toSentenceSerial` method
* Added `surround` and `quote` methods

### 2.2.0 ###

* Capitalize method behavior changed
Expand Down
4 changes: 2 additions & 2 deletions lib/underscore.string.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 '2.2.0rc'
// Version '2.3.0'

!function(root, String){
'use strict';
Expand Down Expand Up @@ -176,7 +176,7 @@

var _s = {

VERSION: '2.2.0rc',
VERSION: '2.3.0',

isBlank: function(str){
if (str == null) str = '';
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": "2.2.0rc",
"version": "2.3.0",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down

0 comments on commit 6323fb9

Please sign in to comment.