Skip to content

Commit

Permalink
update to d3 v4.8.0 and test with development version of dplyr
Browse files Browse the repository at this point in the history
  • Loading branch information
timelyportfolio committed Apr 18, 2017
1 parent 80ba641 commit e26a768
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 13 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: d3r
Type: Package
Title: 'd3.js' Utilities for R
Version: 0.6.2
Date: 2017-02-28
Version: 0.6.3
Date: 2017-04-18
Authors@R: c(
person(
"Mike", "Bostock"
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# d3r 0.6.3

### Updates

* update d3v4 to [`4.8.0`](https://github.com/d3/d3/releases/tag/v4.8.0)
* test with development `dplyr`

# d3r 0.6.2

### Updates
Expand Down
4 changes: 2 additions & 2 deletions R/dependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ d3_dep_v4 <- function(offline=TRUE){
if(offline) {
src = c(file=system.file("www/d3/v4/dist", package="d3r"))
} else {
src <- c(href="https://cdnjs.cloudflare.com/ajax/libs/d3/4.7.0/")
src <- c(href="https://cdnjs.cloudflare.com/ajax/libs/d3/4.8.0/")
}

htmltools::htmlDependency(
name = "d3",
version = "4.7.0",
version = "4.8.0",
src = src,
script = "d3.min.js"
)
Expand Down
1 change: 1 addition & 0 deletions inst/www/d3/v4/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ Methods for transforming arrays and for generating new arrays.
* [d3.permute](https://github.com/d3/d3-array/blob/master/README.md#permute) - reorder an array of elements according to an array of indexes.
* [d3.shuffle](https://github.com/d3/d3-array/blob/master/README.md#shuffle) - randomize the order of an array.
* [d3.ticks](https://github.com/d3/d3-array/blob/master/README.md#ticks) - generate representative values from a numeric interval.
* [d3.tickIncrement](https://github.com/d3/d3-array/blob/master/README.md#tickIncrement) - generate representative values from a numeric interval.
* [d3.tickStep](https://github.com/d3/d3-array/blob/master/README.md#tickStep) - generate representative values from a numeric interval.
* [d3.range](https://github.com/d3/d3-array/blob/master/README.md#range) - generate a range of numeric values.
* [d3.transpose](https://github.com/d3/d3-array/blob/master/README.md#transpose) - transpose an array of arrays.
Expand Down
2 changes: 1 addition & 1 deletion inst/www/d3/v4/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2010-2016 Mike Bostock
Copyright 2010-2017 Mike Bostock
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
16 changes: 8 additions & 8 deletions inst/www/d3/v4/dist/d3.min.js

Large diffs are not rendered by default.

0 comments on commit e26a768

Please sign in to comment.