From 4d777f819a4b7abf47ee335e2eb73743904f96f3 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Sat, 25 Jun 2016 08:16:09 -0700 Subject: [PATCH] Update d3-{brush,zoom}. --- CHANGES.md | 4 ++-- README.md | 4 ++-- package.json | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fccd6f34..fba72da0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,13 +3,13 @@ D3 4.0 is modular. Instead of one library, D3 is now [many small libraries](#table-of-contents) that are designed to work together. You can pick and choose which parts to use as you see fit. Each library is maintained in its own repository, allowing decentralized ownership and independent release cycles. The default bundle combines about thirty of these microlibraries. ```html - + ``` As before, you can load optional plugins on top of the default bundle, such as [ColorBrewer scales](https://github.com/d3/d3-scale-chromatic): ```html - + ``` diff --git a/README.md b/README.md index 2884ea40..918d1341 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ If you use NPM, `npm install d3@next`. Otherwise, download the [latest release](https://npmcdn.com/d3@next/build/). The released bundle supports AMD, CommonJS, and vanilla environments. Create a [custom bundle using Rollup](http://bl.ocks.org/mbostock/bb09af4c39c79cffcde4) or your preferred bundler. You can also load directly from [d3js.org](https://d3js.org): ```html - + ``` For the minified version: ```html - + ``` You can also use the standalone D3 microlibraries. For example, [d3-color](https://github.com/d3/d3-color): diff --git a/package.json b/package.json index 61afb28b..0ffc631c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "d3", - "version": "4.0.0-rc.1", + "version": "4.0.0-rc.2", "publishConfig": { "tag": "next" }, @@ -43,7 +43,7 @@ "dependencies": { "d3-array": "1.0.0", "d3-axis": "1.0.0", - "d3-brush": "1.0.0", + "d3-brush": "1.0.1", "d3-collection": "1.0.0", "d3-color": "1.0.0", "d3-dispatch": "1.0.0", @@ -69,6 +69,6 @@ "d3-timer": "1.0.0", "d3-transition": "1.0.0", "d3-voronoi": "1.0.0", - "d3-zoom": "1.0.0" + "d3-zoom": "1.0.1" } } -- GitLab