Skip to content

Commit fc57027

Browse files
Update version, news, and meta data
1 parent f0fe921 commit fc57027

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
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.3.2
3+
Version: 0.3.3
44
Authors@R:
55
c(person(given = "Jeffrey R.",
66
family = "Stevens",

NEWS.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# excluder 0.3.3
2+
3+
## BUG FIXES
4+
5+
* Updating `{dplyr}` to 1.0.8 caught problem with using `across()` inside `is.na()`. Instead, it now uses `if_all()` with `is.na()` as argument. Thanks to [@romainfrancois](https://github.com/romainfrancois) for pull request [\#7](https://github.com/ropensci/excluder/pull/7).
6+
* `remove_label_rows()` now properly converts numeric data in Status and Finished columns.
7+
18
# excluder 0.3.2
29

310
## MINOR IMPROVEMENTS
@@ -50,9 +57,9 @@
5057

5158
* `exclude__*()` functions now have `print = FALSE` and `quiet = TRUE` set as default argument values.
5259
* Calls to `rbind()` have been replaced with `bind_cols()` and `dplyr::pull()` has been replaced with `[[]]`.
53-
* Calls to `all_of()` and `any_of()` now refer to {tidyselect} rather than {dplyr}.
60+
* Calls to `all_of()` and `any_of()` now refer to `{tidyselect}` rather than `{dplyr}`.
5461
* `if()` statements are now more robust by using `identical()` rather than `==` and `&&` instead of `&`.
55-
* The {stringr} package is now imported instead of suggested.
62+
* The `{stringr}` package is now imported instead of suggested.
5663
* 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.
5764

5865
### BUG FIXES
@@ -61,7 +68,7 @@
6168

6269
### DEPRECATED AND DEFUNCT
6370

64-
* `collapse_exclusions()` has been renamed `unite_exclusions()` to match {tidyverse} terminology. `collapse_exclusions()` is now deprecated and will be removed in a future version, use `unite_exlusions()`. `unite_exlusions()` also switched from using NA to "" for rows with no exclusions. Combined columns now no longer have leftover separators.
71+
* `collapse_exclusions()` has been renamed `unite_exclusions()` to match `{tidyverse}` terminology. `collapse_exclusions()` is now deprecated and will be removed in a future version, use `unite_exlusions()`. `unite_exlusions()` also switched from using NA to "" for rows with no exclusions. Combined columns now no longer have leftover separators.
6572

6673
### DOCUMENTATION FIXES
6774

codemeta.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
],
66
"@type": "SoftwareSourceCode",
77
"identifier": "excluder",
8-
"description": "Data that are collected through online sources such as Mechanical \n Turk may require excluding rows because of IP address duplication, \n geolocation, or completion duration. This package facilitates\n exclusion of these data for Qualtrics datasets.",
8+
"description": "Data that are collected through online sources such as Mechanical Turk may require excluding rows because of IP address duplication, geolocation, or completion duration. This package facilitates exclusion of these data for Qualtrics datasets.",
99
"name": "excluder: Checks for Exclusion Criteria in Online Data",
1010
"codeRepository": "https://github.com/ropensci/excluder/",
11-
"relatedLink": "https://docs.ropensci.org/excluder/",
11+
"relatedLink": ["https://docs.ropensci.org/excluder/", "https://CRAN.R-project.org/package=excluder"],
1212
"issueTracker": "https://github.com/ropensci/excluder/issues/",
1313
"license": "https://spdx.org/licenses/GPL-3.0",
14-
"version": "0.3.2",
14+
"version": "0.3.3",
1515
"programmingLanguage": {
1616
"@type": "ComputerLanguage",
1717
"name": "R",
@@ -288,8 +288,8 @@
288288
],
289289
"releaseNotes": "https://github.com/ropensci/excluder/blob/master/NEWS.md",
290290
"readme": "https://github.com/ropensci/excluder/blob/main/README.md",
291-
"fileSize": "279.934KB",
292-
"contIntegration": "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main",
291+
"fileSize": "264.253KB",
292+
"contIntegration": ["https://github.com/ropensci/excluder/actions", "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main"],
293293
"developmentStatus": ["https://www.repostatus.org/#active", "https://lifecycle.r-lib.org/articles/stages.html#stable"],
294294
"keywords": [
295295
"qualtrics",
@@ -333,5 +333,11 @@
333333
"@type": "Review",
334334
"url": "https://github.com/ropensci/software-review/issues/455",
335335
"provider": "https://ropensci.org"
336+
},
337+
"provider": {
338+
"@id": "https://cran.r-project.org",
339+
"@type": "Organization",
340+
"name": "Comprehensive R Archive Network (CRAN)",
341+
"url": "https://cran.r-project.org"
336342
}
337343
}

0 commit comments

Comments
 (0)