Skip to content

Commit

Permalink
bump version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hermann committed Nov 15, 2014
1 parent 15520a1 commit 5fce6d4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ _('my name is epeli').titleize()

**camelize** _.camelize(string)

Converts underscored or dasherized string to a camelized one. Begins with
Converts underscored or dasherized string to a camelized one. Begins with
a lower case letter unless it starts with an underscore or string

```javascript
Expand Down Expand Up @@ -683,6 +683,13 @@ _ = _.string

## Changelog ##

### 2.4.0 ###

* Move from rake to gulp
* Add support form classify camelcase strings
* Fix bower.json
* [Full changelog](https://github.com/epeli/underscore.string/compare/v2.3.3...2.4.0)

### 2.3.3 ###

* Add `toBoolean`
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": "2.3.3",
"version": "2.4.0",
"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": "2.3.3",
"version": "2.4.0",
"keywords": ["underscore", "string"],
"dependencies": {},
"development": {},
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.3.3'
// Version '2.4.0'

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

var _s = {

VERSION: '2.3.0',
VERSION: '2.4.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.3.3",
"version": "2.4.0",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down

0 comments on commit 5fce6d4

Please sign in to comment.