Skip to content

Commit

Permalink
Version 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stoeffel committed Feb 24, 2016
1 parent 7d7cdc4 commit 2f78f0d
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# Changelog

### 3.3.4
* set standalone in browserify `s`

### 3.3.1 / 3.3.2 / 3.3.3
* fix release script

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": "3.3.3",
"version": "3.3.4",
"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": "3.3.3",
"version": "3.3.4",
"keywords": [
"underscore",
"string"
Expand Down
11 changes: 6 additions & 5 deletions dist/underscore.string.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* 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 '3.3.3'
* Version '3.3.4'
* @preserve
*/

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.s = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
var trim = require('./trim');
var decap = require('./decapitalize');

Expand Down Expand Up @@ -314,7 +314,7 @@ module.exports = function include(str, needle) {
* 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 '3.3.3'
* Version '3.3.4'
* @preserve
*/

Expand All @@ -326,7 +326,7 @@ function s(value) {
this._wrapped = value;
}

s.VERSION = '3.3.3';
s.VERSION = '3.3.4';

s.isBlank = require('./isBlank');
s.stripTags = require('./stripTags');
Expand Down Expand Up @@ -1365,4 +1365,5 @@ module.exports = function wrap(str, options){
}
};

},{"./helper/makeString":20}]},{},[25]);
},{"./helper/makeString":20}]},{},[25])(25)
});
8 changes: 4 additions & 4 deletions dist/underscore.string.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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 '3.3.3'
* Version '3.3.4'
* @preserve
*/

Expand All @@ -16,7 +16,7 @@ function s(value) {
this._wrapped = value;
}

s.VERSION = '3.3.3';
s.VERSION = '3.3.4';

s.isBlank = require('./isBlank');
s.stripTags = require('./stripTags');
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Package.describe({
name: 'underscorestring:underscore.string',
summary: 'underscore.string (official): String manipulation extensions for Underscore.js javascript library.',
version: '3.3.3',
version: '3.3.4',
git: 'https://github.com/epeli/underscore.string.git',
documentation: 'README.markdown'
});
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": "3.3.3",
"version": "3.3.4",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
Expand Down

0 comments on commit 2f78f0d

Please sign in to comment.