Skip to content

Commit

Permalink
increment major version, update docs, pkgdown
Browse files Browse the repository at this point in the history
  • Loading branch information
timelyportfolio committed Aug 15, 2021
1 parent 758dcea commit fa6f6cf
Show file tree
Hide file tree
Showing 39 changed files with 1,532 additions and 727 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.9.1
Date: 2020-11-19
Version: 1.0.0
Date: 2021-08-15
Authors@R: c(
person(
"Mike", "Bostock"
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export(d3_dep_v3)
export(d3_dep_v4)
export(d3_dep_v5)
export(d3_dep_v6)
export(d3_dep_v7)
export(d3_igraph)
export(d3_json)
export(d3_nest)
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# d3r 1.0.0

* add d3 version [`7.0.0`](https://github.com/d3/d3/releases/tag/v7.0.0) dependency function `d3_dep_v7()`
* update d3 version [`6.7.0`](https://github.com/d3/d3/releases/tag/v6.7.0) in dependency function `d3_dep_v6()`

# d3r 0.9.1

* add d3 version [`6.2.0`](https://github.com/d3/d3/releases/tag/v6.2.0) dependency function `d3_dep_v6()`
Expand Down
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ devtools::install_github("timelyportfolio/d3r")

### d3 Dependency Functions

`d3r` makes `d3.js` dependency injection in R easy with `d3_dep_v3()`, `d3_dep_v4()`, `d3_dep_v5()`, and the newest `d3_dep_v6()`. These functions work well with `htmltools::tags`.
`d3r` makes `d3.js` dependency injection in R easy with `d3_dep_v3()`, `d3_dep_v4()`, `d3_dep_v5()`, `d3_dep_v6()`, and the newest `d3_dep_v7()`. These functions work well with `htmltools::tags`.

```
library(htmltools)
Expand All @@ -41,7 +41,7 @@ library(d3r)
browsable(
attachDependencies(
tagList(),
d3_dep_v6()
d3_dep_v7()
)
)
Expand All @@ -50,7 +50,7 @@ browsable(
tagList(
h1("I have d3 version ", span(id="version")),
tags$script("d3.select('#version').text(d3.version)"),
d3_dep_v6()
d3_dep_v7()
)
)
```
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ absolute latest use `devtools`.
### d3 Dependency Functions

`d3r` makes `d3.js` dependency injection in R easy with `d3_dep_v3()`,
`d3_dep_v4()`, `d3_dep_v5()`, and the newest `d3_dep_v6()`. These
functions work well with `htmltools::tags`.
`d3_dep_v4()`, `d3_dep_v5()`, `d3_dep_v6()`, and the newest
`d3_dep_v7()`. These functions work well with `htmltools::tags`.

library(htmltools)
library(d3r)
Expand All @@ -32,7 +32,7 @@ functions work well with `htmltools::tags`.
browsable(
attachDependencies(
tagList(),
d3_dep_v6()
d3_dep_v7()
)
)

Expand All @@ -41,7 +41,7 @@ functions work well with `htmltools::tags`.
tagList(
h1("I have d3 version ", span(id="version")),
tags$script("d3.select('#version').text(d3.version)"),
d3_dep_v6()
d3_dep_v7()
)
)

Expand Down
38 changes: 24 additions & 14 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 24 additions & 14 deletions docs/CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 24 additions & 14 deletions docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fa6f6cf

Please sign in to comment.