Skip to content

Commit

Permalink
v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Feb 19, 2015
1 parent bfd0654 commit 824d247
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"name": "aureooms-js-sort",
"license": "AGPL-3.0",
"homepage": "http://aureooms.github.io/js-sort/",
"version": "3.2.0"
"version": "3.2.1"
}
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "sorting code bricks for JavaScript",
"version": "3.2.0",
"version": "3.2.1",
"repo": "aureooms/js-sort",
"scripts": [
"js/dist/sort.js"
Expand Down
5 changes: 5 additions & 0 deletions js/dist/sort.js
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,11 @@ exports.insertionsort = insertionsort;

var iterativemergesort = function ( merge , copy ) {

/**
* Always makes at most A001855(n) comparisons.
*
*/

var mergesort = function ( compare , a , ai , aj , b , bi ) {

var whole , left , center , right , mask , half ;
Expand Down
2 changes: 1 addition & 1 deletion js/dist/sort.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"url": "https://github.com/aureooms/js-sort.git",
"type": "git"
},
"version": "3.2.0"
"version": "3.2.1"
}

0 comments on commit 824d247

Please sign in to comment.