Skip to content

Commit 175ca89

Browse files
Update version to 0.3.0
1 parent 12b4ad2 commit 175ca89

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: excluder
22
Title: Checks for Exclusion Criteria in Online Data
3-
Version: 0.2.2
3+
Version: 0.3.0
44
Authors@R:
55
person(given = "Jeffrey R.",
66
family = "Stevens",

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# excluder 0.3.0
2+
3+
* The primary functionality of the package has moved from the `check_*()` functions to the `mark_*()` functions. Thus, `check_*()` and `exclude_*()` now first call `mark_*()` to mark the rows with exclusion criteria, then filter the excluded rows. The documentation for `check_*()` and `exclude_*()` now inherit the arguments from `mark_*()`. This change has been updated in the README and Getting Started vignette.
4+
* `collapse_exclusions()` has been renamed `unite_exclusions()` to match {tidyverse} terminology. `collapse_exclusions()` is now deprecated and will be removed later. `unite_exlusions()` also switched from using NA to "" for rows with no exclusions. Combined columns now no longer have leftover separators.
5+
* The `mark_durations()` function now marks fast and slow durations separately.
6+
* `exclude__*()` functions now have `print = FALSE` and `quiet = TRUE` set as default argument values.
7+
* Calls to `rbind()` have been replaced with `bind_cols()` and `dplyr::pull()` has been replaced with `[[]]`.
8+
* Calls to `all_of()` and `any_of()` now refer to {tidyselect} rather than {dplyr}.
9+
* `if()` statements are now more robust by using `identical()` rather than `==` and `&&` instead of `&`.
10+
* The {stringer} package is now imported instead of suggested.
11+
* The `*_ip()` functions and documentation have been updated to fix a bug/typo to clarify that they mark, check, and exclude rows with IP addresses outside of the specified country.
12+
* Package links are replaced with external URLs.
13+
* All mark, check, and exclude functions for a particular exclusion type have been combined into a single R file. So now each exclusion type has its own R file. Similarly, data file scripts have been combined into a single file.
14+
115
# excluder 0.2.2
216

317
* Lifecycle has been updated to Stable, and the repo status of Active has been added.

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ df <- qualtrics_text %>%
128128

129129
To cite `{excluder}`, use:
130130

131-
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.2.2, https://jeffreyrstevens.github.io/excluder/.
131+
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.3.0, https://jeffreyrstevens.github.io/excluder/.
132132
133133
## Contributing to this package
134134

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ df <- qualtrics_text %>%
258258
To cite `{excluder}`, use:
259259

260260
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R
261-
> package version 0.2.2, <https://jeffreyrstevens.github.io/excluder/>.
261+
> package version 0.3.0, <https://jeffreyrstevens.github.io/excluder/>.
262262
263263
## Contributing to this package
264264

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"relatedLink": "https://jeffreyrstevens.github.io/excluder/",
1212
"issueTracker": "https://github.com/jeffreyrstevens/excluder/issues/",
1313
"license": "https://spdx.org/licenses/GPL-3.0",
14-
"version": "0.2.2",
14+
"version": "0.3.0",
1515
"programmingLanguage": {
1616
"@type": "ComputerLanguage",
1717
"name": "R",

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ citEntry(entry = "manual",
44
title = "{excluder}: Exclude rows to clean your data",
55
author = personList(as.person("Jeffrey R. Stevens")),
66
year = "2021",
7-
notes = "R package version 0.2.2",
7+
notes = "R package version 0.3.0",
88
url = "https://jeffreyrstevens.github.io/excluder/",
99
textVersion =
1010
paste("Stevens, J.R. (2021).",
1111
"excluder: Exclude rows to clean your data.",
12-
"R package version 0.2.2,",
12+
"R package version 0.3.0,",
1313
"https://jeffreyrstevens.github.io/excluder/.")
1414
)

0 commit comments

Comments
 (0)