Skip to content

Commit

Permalink
v1.45.4 released to cran
Browse files Browse the repository at this point in the history
  • Loading branch information
cb4ds committed Aug 9, 2023
2 parents 83f4d0d + eb50635 commit f6c0f06
Show file tree
Hide file tree
Showing 19 changed files with 327 additions and 211 deletions.
14 changes: 8 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Notes:
# - Docker containers with R, etc. provided by rocker. See <https://hub.docker.com/r/rocker/verse>.
# - Builds attempted for 3.6.3, 4.0.5, and the *latest* R edition supported by rocker.
# - Builds attempted for 4.0.5, 4.2.3, and the *latest* R edition supported by rocker.

version: 2.1
jobs:
Build-for-r3_6_3:
Build-for-r4_0_5:
docker:
- image: rocker/verse:3.6.3
- image: rocker/verse:4.0.5

steps:
- checkout
Expand All @@ -28,6 +28,7 @@ jobs:
R -e 'BiocManager::install(c("limma"))'
R -e 'install.packages("covr")'
R -e 'install.packages("canvasXpress.data")'
R -e 'install.packages("DT")'
- run:
name: Session information and installed package versions
Expand All @@ -52,7 +53,7 @@ jobs:
# Perform package check
R CMD check *tar.gz
Build-for-r4_0_5:
Build-for-r4_2_3:
docker:
- image: rocker/verse:4.0.5

Expand All @@ -76,6 +77,7 @@ jobs:
R -e 'BiocManager::install(c("limma"))'
R -e 'install.packages("covr")'
R -e 'install.packages("canvasXpress.data")'
R -e 'install.packages("DT")'
- run:
name: Session information and installed package versions
Expand All @@ -100,7 +102,6 @@ jobs:
# Perform package check
R CMD check *tar.gz
Build-for-rLATEST:
docker:
- image: rocker/verse:latest
Expand All @@ -125,6 +126,7 @@ jobs:
R -e 'BiocManager::install(c("limma"))'
R -e 'install.packages("covr")'
R -e 'install.packages("canvasXpress.data")'
R -e 'install.packages("DT")'
- run:
name: Session information and installed package versions
Expand Down Expand Up @@ -154,5 +156,5 @@ workflows:
Prepare-All-R-Editions:
jobs:
- Build-for-r4_0_5
- Build-for-r3_6_3
- Build-for-r4_2_3
- Build-for-rLATEST
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: canvasXpress
Version: 1.43.7
Version: 1.45.4
Title: Visualization Package for CanvasXpress in R
Description: Enables creation of visualizations using the CanvasXpress framework
in R. CanvasXpress is a standalone JavaScript library for reproducible research
Expand All @@ -12,13 +12,13 @@ Encoding: UTF-8
Language: en-US
Authors@R: c(
person("Isaac", "Neuhaus", email = "imnphd@gmail.com", role = c("aut")),
person("Connie", "Brett", email = "connie@aggregate-genius.com", role = c("aut", "cre")))
person("Connie", "Brett", email = "connie@aggregate-genius.com", role = c("aut", "cre")))
URL:
https://github.com/neuhausi/canvasXpress
BugReports:
https://github.com/neuhausi/canvasXpress/issues
Depends:
R (>= 3.5)
R (>= 3.6)
Imports:
htmlwidgets (>= 1.0),
htmltools,
Expand All @@ -30,6 +30,7 @@ Suggests:
shiny (>= 1.1.0),
canvasXpress.data,
dplyr,
DT,
glue,
grid,
knitr,
Expand Down
14 changes: 10 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# R Package NEWS
---
title: "R Package NEWS"
---


This file details changes to the canvasXpress R package only!

This file details changes to the canvasXpress R package only - for detailed
information on changes to the stand-alone JavaScript CanvasXpress library see the
<a href="https://www.canvasxpress.org"> main website</a>.
For detailed information on changes to the stand-alone JavaScript CanvasXpress library see the
<a href="https://www.canvasxpress.org"> main CanvasXpress website</a>.


---

## v1.45.4
* Updated CanvasXpress JS and CSS libraries to v45.4
* Updated ggplot conversion functionality to expand functionality and fix bugs

## v1.43.7
* Updated CanvasXpress JS and CSS libraries to v43.7
Expand Down
Loading

0 comments on commit f6c0f06

Please sign in to comment.