From eadbaf3c1d41e9237d568bc64446f8a6ea2d398d Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Tue, 28 Feb 2017 12:19:34 -0800 Subject: [PATCH] Update dependencies. --- API.md | 2 ++ package.json | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/API.md b/API.md index 3a753a30..f463a6d8 100644 --- a/API.md +++ b/API.md @@ -71,6 +71,7 @@ Methods for searching arrays for a specific element. Methods for transforming arrays and for generating new arrays. +* [d3.cross](https://github.com/d3/d3-array/blob/master/README.md#cross) - compute the Cartesian product of two arrays. * [d3.merge](https://github.com/d3/d3-array/blob/master/README.md#merge) - merge multiple arrays into one array. * [d3.pairs](https://github.com/d3/d3-array/blob/master/README.md#pairs) - create an array of adjacent pairs of elements. * [d3.permute](https://github.com/d3/d3-array/blob/master/README.md#permute) - reorder an array of elements according to an array of indexes. @@ -429,6 +430,7 @@ Geographic projections, shapes and math. * [d3.geoArea](https://github.com/d3/d3-geo/blob/master/README.md#geoArea) - compute the spherical area of a given feature. * [d3.geoBounds](https://github.com/d3/d3-geo/blob/master/README.md#geoBounds) - compute the latitude-longitude bounding box for a given feature. * [d3.geoCentroid](https://github.com/d3/d3-geo/blob/master/README.md#geoCentroid) - compute the spherical centroid of a given feature. +* [d3.geoContains](https://github.com/d3/d3-geo/blob/master/README.md#geoContains) - test whether a point is inside a given feature. * [d3.geoDistance](https://github.com/d3/d3-geo/blob/master/README.md#geoDistance) - compute the great-arc distance between two points. * [d3.geoLength](https://github.com/d3/d3-geo/blob/master/README.md#geoLength) - compute the length of a line string or the perimeter of a polygon. * [d3.geoInterpolate](https://github.com/d3/d3-geo/blob/master/README.md#geoInterpolate) - interpolate between two points along a great arc. diff --git a/package.json b/package.json index 86e5848d..437af5c5 100644 --- a/package.json +++ b/package.json @@ -40,35 +40,35 @@ "uglify-js": "2" }, "dependencies": { - "d3-array": "1.0.2", - "d3-axis": "1.0.4", + "d3-array": "1.1.0", + "d3-axis": "1.0.5", "d3-brush": "1.0.3", "d3-chord": "1.0.3", "d3-collection": "1.0.2", "d3-color": "1.0.2", "d3-dispatch": "1.0.2", - "d3-drag": "1.0.2", + "d3-drag": "1.0.3", "d3-dsv": "1.0.3", "d3-ease": "1.0.2", - "d3-force": "1.0.4", - "d3-format": "1.0.2", - "d3-geo": "1.5.0", + "d3-force": "1.0.5", + "d3-format": "1.1.0", + "d3-geo": "1.6.0", "d3-hierarchy": "1.1.2", "d3-interpolate": "1.1.3", "d3-path": "1.0.3", "d3-polygon": "1.0.2", "d3-quadtree": "1.0.2", - "d3-queue": "3.0.3", + "d3-queue": "3.0.4", "d3-random": "1.0.2", - "d3-request": "1.0.3", + "d3-request": "1.0.4", "d3-scale": "1.0.4", - "d3-selection": "1.0.3", - "d3-shape": "1.0.4", - "d3-time": "1.0.4", - "d3-time-format": "2.0.3", + "d3-selection": "1.0.4", + "d3-shape": "1.0.5", + "d3-time": "1.0.5", + "d3-time-format": "2.0.4", "d3-timer": "1.0.4", "d3-transition": "1.0.3", "d3-voronoi": "1.1.1", - "d3-zoom": "1.1.1" + "d3-zoom": "1.1.2" } }