Bump to v3.1.4.

This commit is contained in:
jdalton
2015-04-16 00:28:52 -07:00
committed by John-David Dalton
parent f9b785686a
commit cf4b24e17c
22 changed files with 331 additions and 120 deletions

View File

@@ -1,4 +1,4 @@
# lodash.sortby v3.1.3
# lodash.sortby v3.1.4
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodashs](https://lodash.com/) `_.sortBy` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module.
@@ -17,4 +17,4 @@ In Node.js/io.js:
var sortBy = require('lodash.sortby');
```
See the [documentation](https://lodash.com/docs#sortBy) or [package source](https://github.com/lodash/lodash/blob/3.1.3-npm-packages/lodash.sortby) for more details.
See the [documentation](https://lodash.com/docs#sortBy) or [package source](https://github.com/lodash/lodash/blob/3.1.4-npm-packages/lodash.sortby) for more details.

View File

@@ -1,5 +1,5 @@
/**
* lodash 3.1.3 (Custom Build) <https://lodash.com/>
* lodash 3.1.4 (Custom Build) <https://lodash.com/>
* Build: `lodash modern modularize exports="npm" -o ./`
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -10,9 +10,7 @@ var baseCallback = require('lodash._basecallback'),
baseCompareAscending = require('lodash._basecompareascending'),
baseEach = require('lodash._baseeach'),
baseSortBy = require('lodash._basesortby'),
isIterateeCall = require('lodash._isiterateecall'),
isArray = require('lodash.isarray'),
keys = require('lodash.keys');
isIterateeCall = require('lodash._isiterateecall');
/**
* Used by `_.sortBy` to compare transformed elements of a collection and stable

View File

@@ -1,6 +1,6 @@
{
"name": "lodash.sortby",
"version": "3.1.3",
"version": "3.1.4",
"description": "The modern build of lodashs `_.sortBy` as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",