Skip to content

Commit

Permalink
1.5.3 Release Prep
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonwoodhull committed Aug 20, 2020
1 parent ed994f6 commit 61dde10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions crossfilter.js
@@ -1,4 +1,4 @@
// https://crossfilter.github.io/crossfilter/ v1.5.2 Copyright 2020 Mike Bostock
// https://crossfilter.github.io/crossfilter/ v1.5.3 Copyright 2020 Mike Bostock
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -982,7 +982,7 @@
function filterFunction(f) {
filterValue = f;
filterValuePresent = true;

refilterFunction = f;
refilter = xfilterFilter.filterAll;

Expand Down Expand Up @@ -1087,11 +1087,11 @@
filterListeners.forEach(function(l) { l(one, offset, added, removed); });
triggerOnChange('filtered');
}

function currentFilter() {
return filterValue;
}

function hasCurrentFilter() {
return filterValuePresent;
}
Expand Down Expand Up @@ -1425,6 +1425,7 @@
++j;
}
}
groupIndex = groupIndex.slice(0, j);
}

// Reassemble groups including only those groups that were referred
Expand Down Expand Up @@ -1902,7 +1903,7 @@
: 0x100000000;
}

var version = "1.5.2";
var version = "1.5.3";

// Note(cg): exporting current version for umd build.
crossfilter.version = version;
Expand Down

0 comments on commit 61dde10

Please sign in to comment.