Skip to content

Commit f6c337c

Browse files
committedJan 24, 2016
Cutting build 1.8.2
1 parent cf34d6b commit f6c337c

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed
 

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ NVD3 runs best on WebKit based browsers.
3636

3737
## Changelog
3838

39+
**1.8.2** Changes:
40+
41+
* Lots of community bugfixes and a few extra minor features
42+
3943
**1.8.1** Changes:
4044

4145
* Tooltips were refactored - If you have customized your tooltips, note that you may need to adjust your custom functions as the data passed has changed format. See the new [tooltip options](https://nvd3-community.github.io/nvd3/examples/documentation.html#tooltip) for more details.

‎build/nv.d3.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* nvd3 version 1.8.1-dev (https://github.com/novus/nvd3) 2016-01-24 */
1+
/* nvd3 version 1.8.2 (https://github.com/novus/nvd3) 2016-01-24 */
22
.nvd3 .nv-axis {
33
pointer-events:none;
44
opacity: 1;

‎build/nv.d3.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* nvd3 version 1.8.1-dev (https://github.com/novus/nvd3) 2016-01-24 */
1+
/* nvd3 version 1.8.2 (https://github.com/novus/nvd3) 2016-01-24 */
22
(function(){
33

44
// set up main nv object
@@ -13785,5 +13785,5 @@ nv.models.sunburstChart = function() {
1378513785
return chart;
1378613786
};
1378713787

13788-
nv.version = "1.8.1-dev";
13788+
nv.version = "1.8.2";
1378913789
})();

‎build/nv.d3.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Package.describe({
66
"name": 'nvd3:nvd3',
77
summary: 'Nvd3.org charts.',
8-
version: '1.8.1-dev',
8+
version: '1.8.2',
99
git: "https://github.com/novus/nvd3.git"
1010
});
1111
Package.on_use(function (api) {

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nvd3",
3-
"version": "1.8.1-dev",
3+
"version": "1.8.2",
44
"description": "A reusable charting library written in d3.js",
55
"url": "https://github.com/novus/nvd3",
66
"main": "build/nv.d3.js",

0 commit comments

Comments
 (0)
Please sign in to comment.