Skip to content

Commit c532484

Browse files
committed
Merge branch 'hotfix/0.18.1' into develop
2 parents bf6375c + fddcfea commit c532484

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: coursekata
22
Title: Packages and Functions for 'CourseKata' Courses
3-
Version: 0.18.0
4-
Date: 2024-08-16
3+
Version: 0.18.1
4+
Date: 2024-12-12
55
Authors@R: c(
66
person("Adam", "Blake", , "adam@coursekata.org", role = c("cre", "aut"),
77
comment = c(ORCID = "0000-0001-7881-8652")),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# `coursekata` change log
22

3+
## coursekata 0.18.1
4+
5+
- Add alternate name `Fingers$Gender` to `Fingers` dataset to prevent awkward naming in exercises.
6+
37
## coursekata 0.18.0
48

59
- Remove dependency on `pak`. `pak` was initially used to manage and parse dependencies, but itself depends on `curl`. `curl` is not available on all platforms (e.g. WASM), so we have removed the dependency on `pak` and opted for pure R where possible (or `remotes` which has a pure R fallback).

R/data.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
#'
219219
#' @format A data frame with 157 observations on the following 16 variables:
220220
#' \describe{
221-
#' \item{`Sex`}{Sex of participant.}
221+
#' \item{`Gender`}{Gender of participant.}
222222
#' \item{`RaceEthnic`}{Racial or ethnic background.}
223223
#' \item{`FamilyMembers`}{Members of immediate family (excluding self).}
224224
#' \item{`SSLast`}{Last digit of social security number (`NA` if no SSN).}
@@ -243,6 +243,7 @@
243243
#' finger and palm.}
244244
#' \item{`Height`}{Height in inches.}
245245
#' \item{`Weight`}{Weight in pounds.}
246+
#' \item{`Sex`}{Sex of participant.}
246247
#' }
247248
"Fingers"
248249

@@ -258,7 +259,7 @@
258259
#'
259260
#' @format A data frame with 157 observations on the following 16 variables:
260261
#' \describe{
261-
#' \item{`Sex`}{Sex of participant.}
262+
#' \item{`Gender`}{Gender of participant.}
262263
#' \item{`RaceEthnic`}{Racial or ethnic background.}
263264
#' \item{`FamilyMembers`}{Members of immediate family (excluding self).}
264265
#' \item{`SSLast`}{Last digit of social security number (`NA` if no SSN).}
@@ -283,6 +284,7 @@
283284
#' finger and palm.}
284285
#' \item{`Height`}{Height in inches.}
285286
#' \item{`Weight`}{Weight in pounds.}
287+
#' \item{`Sex`}{Sex of participant.}
286288
#' }
287289
"FingersMessy"
288290

cran-comments.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
## Release summary
22

3-
- Fix CRAN notes by adding missing package anchors to link targets
4-
- Refactor zzz.R to fix .onAttach() error on CRAN
5-
- Remove dependency on `pak`. `pak` was initially used to manage and parse dependencies, but itself depends on `curl`. `curl` is not available on all platforms (e.g. WASM), so we have removed the dependency on `pak` and opted for pure R where possible (or `remotes` which has a pure R fallback).
6-
- Add `FoodQuality` to `TipExperiment` dataset.
7-
- Various CI improvements: update for compatibility with more `rhub` platforms, don't run `vdiffr` tests on CI, allow tests to run in parallel.
3+
- Add alternate name `Fingers$Gender` to `Fingers` dataset to prevent awkward naming in exercises.
84

95
## Test environments
106

data/Fingers.rda

-51 Bytes
Binary file not shown.

data/FingersMessy.rda

32 Bytes
Binary file not shown.

man/Fingers.Rd

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/FingersMessy.Rd

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)