Skip to content

Commit c7bc7d2

Browse files
committed
3.0.1
1 parent c228b6b commit c7bc7d2

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
3.0.1 / 2015-03-16
2+
------------------
3+
* bugfix `underscore()` for single letter "words" [#131](https://github.com/jprichardson/string.js/pull/131)
4+
5+
```js
6+
S('oneAtATime').underscore().s //'one_at_a_time' instead of 'one_at_atime'
7+
```
8+
19
3.0.0 / 2014-12-08
210
------------------
311
**BREAKING** Now `underscore()` behaves as one would expect.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping HTML, decoding HTML entities, stripping tags, etc.",
55
"keywords": [
66
"string",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string.js",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping HTML, decoding HTML entities, stripping tags, etc.",
55
"repo": "jprichardson/string.js",
66
"keywords": [

lib/string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ string.js - Copyright (C) 2012-2014, JP Richardson <[email protected]>
55
!(function() {
66
"use strict";
77

8-
var VERSION = '3.0.0';
8+
var VERSION = '3.0.1';
99

1010
var ENTITIES = {};
1111

lib/string.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping html, decoding html entities, stripping tags, etc.",
55
"homepage": "http://stringjs.com",
66
"repository": {

0 commit comments

Comments
 (0)