Skip to content

Commit e7d537e

Browse files
authored
Merge pull request #97 from dbetebenner/master
Updating github workflow
2 parents 3ea4c25 + 8665c88 commit e7d537e

File tree

7 files changed

+36
-23
lines changed

7 files changed

+36
-23
lines changed

.github/workflows/check-standard.yaml renamed to .github/workflows/R-CMD-check.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
config:
21-
- {os: macOS-latest, r: 'release'}
21+
- {os: macos-latest, r: 'release'}
2222
- {os: windows-latest, r: 'release'}
2323
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
2424
- {os: ubuntu-latest, r: 'release'}
@@ -29,12 +29,17 @@ jobs:
2929
R_KEEP_PKG_SOURCE: yes
3030

3131
steps:
32+
- name: Install Homebrew
33+
if: runner.os == 'macOS'
34+
run: |
35+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
36+
3237
- name: Install XQUARTZ dependencies on MacOS
3338
if: runner.os == 'macOS'
3439
run: |
3540
brew install --cask xquartz
3641
37-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
3843

3944
- uses: r-lib/actions/setup-pandoc@v2
4045

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: SGPdata
22
Type: Package
33
Title: Exemplar Data Sets for Student Growth Percentiles (SGP) Analyses
44
Version: 27.0-0.0
5-
Date: 2023-6-21
5+
Date: 2023-10-17
66
Authors@R: c(person(given=c("Damian", "W."), family="Betebenner", email="[email protected]", role=c("aut", "cre")),
77
person(given=c("Adam", "R."), family="Van Iwaarden", email="[email protected]", role="aut"),
88
person(given="Ben", family="Domingue", email="[email protected]", role="aut"))

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SGPdata 27.0-0.0
2+
3+
* Updating YEAR to 2022_2023
4+
15
# SGPdata 26.0-0.0
26

37
* Updating YEAR to 2021_2022

R/zzz.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ function(libname, pkgname) {
66
`.onAttach` <-
77
function(libname, pkgname) {
88
if (interactive()) {
9-
packageStartupMessage(magenta$bold('SGPdata',paste(paste0(unlist(strsplit(as.character(packageVersion("SGPdata")), "[.]")), c(".", "-", ".", "")), collapse=""),' (6-21-2023). For help: >help("SGPdata") or visit https://centerforassessment.github.io/SGPdata'))
9+
packageStartupMessage(magenta$bold('SGPdata',paste(paste0(unlist(strsplit(as.character(packageVersion("SGPdata")), "[.]")), c(".", "-", ".", "")), collapse=""),' (10-17-2023). For help: >help("SGPdata") or visit https://centerforassessment.github.io/SGPdata'))
1010
}
1111
}

inst/CITATION

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
citHeader("To cite package 'SGPdata' in publications use:")
2-
3-
citEntry(entry = "Manual",
4-
title = "{SGPdata}: Exemplar Data Sets for Student Growth Percentiles (SGP) Analyses.",
5-
author = "Damian W. Betebenner and Adam R. Van Iwaarden and Ben Domingue",
6-
year = "2023",
7-
note = "R package version 27.0-0.0",
8-
url = "https://centerforassessment.github.io/SGPdata/",
9-
10-
textVersion = paste("Damian W. Betebenner, Adam R. Van Iwaarden and Ben Domingue (2023).",
11-
"SGPdata: Exemplar Data Sets for Student Growth Percentile (SGP) Analyses.",
12-
"(R package version 27.0-0.0.",
13-
"URL https://centerforassessment.github.io/SGPdata/")
14-
)
1+
bibentry(
2+
bibtype = "Manual",
3+
header = "To cite the SGPdata package in publications use:",
4+
title = "{SGPdata}: Exemplar Data Sets for Student Growth Percentiles (SGP) Analyses.",
5+
author = c(
6+
person(given = c("Damian", "W."), family = "Betebenner"),
7+
person(given = c("Adam", "R."), family = "Van Iwaarden"),
8+
person(given = c("Benjamin"), family = "Domingue")
9+
),
10+
year = "2023",
11+
note = "R package version 27.0-0.0",
12+
url = "https://centerforassessment.github.io/SGPdata/",
13+
textVersion = paste(
14+
"Damian W. Betebenner, Adam R. Van Iwaarden and Ben Domingue (2023).",
15+
"SGPdata: Exemplar Data Sets for Student Growth Percentile (SGP) Analyses.",
16+
"(R package version 27.0-0.0.",
17+
"URL: https://centerforassessment.github.io/SGPdata/"
18+
)
19+
)

man/SGPdata-package.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Package: \tab SGPdata\cr
1313
Type: \tab Package\cr
1414
Version: \tab 27.0-0.0\cr
15-
Date: \tab 2023-6-21\cr
15+
Date: \tab 2023-10-17\cr
1616
License: \tab GPL-3\cr
1717
LazyLoad: \tab Yes\cr
1818
LazyData: \tab Yes\cr

vignettes/releases/SGPdata-27.0-0.0.Rmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "SGPdata 27.0-0.0"
3-
date: "June 21st, 2023"
3+
date: "October 17th, 2023"
44
---
55

66
```{r include = FALSE}
@@ -22,8 +22,7 @@ date: "June 21st, 2023"
2222
```
2323

2424

25-
This is the 26.0 release of the **SGPdata** package. This release auguments the year number to 2022 for the data sets. In addition, this release adds
26-
updates to the **sgpData_LONG_COVID** data set which is used as a simulation data set to test out several situations currently confronting states as they
27-
think about calculating student growth using spring 2021 data.
25+
This is the 27.0-0.0 release of the **SGPdata** package. This release auguments the year number to 2023 for the
26+
data sets.
2827

2928
Feel free to drop us a line with any comments, feature requests, or ideas. And give us a shout-out Tweet using the Twitter button in the upper right!

0 commit comments

Comments
 (0)