From 9b5b9d090c0f72c1d8edde65ad517992969b0c03 Mon Sep 17 00:00:00 2001 From: Matt Beckman Date: Wed, 13 Jan 2021 10:42:59 -0500 Subject: [PATCH 1/7] init v0.1.0.9000 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 53bf6c6..d934253 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: dcData Type: Package Title: Data Sets Accompanying DataComputing eBook -Version: 0.1.0 +Version: 0.1.0.9000 Authors@R: c( person("Daniel", "Kaplan", role = "aut"), person("Matthew", "Beckman", email = "mdb268@psu.edu", role = c("aut", "cre"))) From 808a0536cf1bc959e0d131cf9ff98be83adae445 Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 10:57:52 -0500 Subject: [PATCH 2/7] update GH actions badge --- README.Rmd | 1 + 1 file changed, 1 insertion(+) diff --git a/README.Rmd b/README.Rmd index 752db9c..2e1f7dc 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,6 +17,7 @@ knitr::opts_chunk$set( [![R build status](https://github.com/mdbeckman/dcData/workflows/R-CMD-check/badge.svg)](https://github.com/mdbeckman/dcData/actions) +[![R-CMD-check](https://github.com/mdbeckman/dcData/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mdbeckman/dcData/actions/workflows/R-CMD-check.yaml) The `dcData` package includes data sets that accompany *Data Computing (2nd edition)* by Kaplan & Beckman [(eBook)](https://dtkaplan.github.io/DataComputingEbook/) used to teach wrangling and visualization techniques that turn data into information. From 2adf4e1957a8966d9a54d2a822461bab8bda9505 Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 11:22:53 -0500 Subject: [PATCH 3/7] increment version --- DESCRIPTION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index d934253..85b4d5c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,12 @@ Package: dcData Type: Package Title: Data Sets Accompanying DataComputing eBook -Version: 0.1.0.9000 +Version: 0.1.1 Authors@R: c( person("Daniel", "Kaplan", role = "aut"), person("Matthew", "Beckman", email = "mdb268@psu.edu", role = c("aut", "cre"))) Description: Data sets accompanying *Data Computing (2nd ed.)* by Kaplan & Beckman - (https://dtkaplan.github.io/DataComputingEbook/) used to teach wrangling + () used to teach wrangling and visualization techniques that turn data into information. License: CC0 Encoding: UTF-8 From badfc5b1ba2d4332795e0fe68aa76fe8043069ad Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 11:27:30 -0500 Subject: [PATCH 4/7] update lazy data compression & roxygen --- DESCRIPTION | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 85b4d5c..7fe543b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -11,6 +11,7 @@ Description: Data sets accompanying *Data Computing (2nd ed.)* by Kaplan & Beckm License: CC0 Encoding: UTF-8 LazyData: true +LazyDataCompression: xz Depends: R (>= 2.10) -RoxygenNote: 7.1.1 +RoxygenNote: 7.3.3 From 02a4f24d592f591bee3a7c925ef8a4e6ad4de26e Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 11:48:18 -0500 Subject: [PATCH 5/7] update GH yaml for R CMD check --- .github/workflows/R-CMD-check.yaml | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/R-CMD-check.yaml diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 0000000..562fe0f --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,51 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + +name: R-CMD-check.yaml + +permissions: read-all + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macos-latest, r: 'release'} + - {os: windows-latest, r: 'release'} + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true + build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")' From d97bbaa1e81c885759a94f3b8347ae1f94f14dc4 Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 11:58:23 -0500 Subject: [PATCH 6/7] rm old GH workflow --- .github/workflows/check-release.yaml | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/check-release.yaml diff --git a/.github/workflows/check-release.yaml b/.github/workflows/check-release.yaml deleted file mode 100644 index 145f0dd..0000000 --- a/.github/workflows/check-release.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. -# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions -on: - push: - branches: - - main - - master - pull_request: - branches: - - main - - master - -name: R-CMD-check - -jobs: - R-CMD-check: - runs-on: macOS-latest - env: - GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} - steps: - - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@v1 - - name: Install dependencies - run: | - install.packages(c("remotes", "rcmdcheck")) - remotes::install_deps(dependencies = TRUE) - shell: Rscript {0} - - name: Check - run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error") - shell: Rscript {0} From 0ff83a21dd9b27960557953e747847d79d0319f1 Mon Sep 17 00:00:00 2001 From: Matthew Beckman Date: Thu, 19 Feb 2026 12:13:43 -0500 Subject: [PATCH 7/7] innocuous change to trigger GH actions --- README.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.Rmd b/README.Rmd index 2e1f7dc..d3a015b 100644 --- a/README.Rmd +++ b/README.Rmd @@ -20,7 +20,7 @@ knitr::opts_chunk$set( [![R-CMD-check](https://github.com/mdbeckman/dcData/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mdbeckman/dcData/actions/workflows/R-CMD-check.yaml) -The `dcData` package includes data sets that accompany *Data Computing (2nd edition)* by Kaplan & Beckman [(eBook)](https://dtkaplan.github.io/DataComputingEbook/) used to teach wrangling and visualization techniques that turn data into information. +The `dcData` package includes data sets that accompany *Data Computing (2nd edition)* by Kaplan & Beckman [(eBook)](https://dtkaplan.github.io/DataComputingEbook/) used to teach data wrangling and visualization techniques that turn data into information. ## Installation