Skip to content

Commit

Permalink
getting ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
joethorley committed Jan 14, 2025
1 parent 0afc9aa commit 536990c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 105 deletions.
99 changes: 3 additions & 96 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,104 +2,11 @@

# chk 0.9.2.9900

## fledge

- Bump version to 0.9.2.9005 (#163).

- Bump version to 0.9.2.9004 (#162).

- Bump version to 0.9.2.9003 (#161).

## Chore

- Auto-update from GitHub Actions (#137).

## Continuous integration

- Use pkgdown branch (#144).

- Install via R CMD INSTALL ., not pak (#139).

- Install local package for pkgdown builds.

- Improve support for protected branches with fledge.

- Improve support for protected branches, without fledge.

- Fix bash syntax.

- Fix logic.

- Set SHA truly unconditionally.

- Only set status if unset.

- Correct arguments.

- Fix typo.

- Add workflow_dispatch.

- Run workflow after pushing.

- Fix case with existing PR.

- Support merge queues.

- Dynamic workflows get title so that they can be distinguished in the UI.

- Robust creation of PR.

- Succeed if PR exists.

- Force-push to auto-generated PR.

- PR without auto-merge if protected, commit if not.

- Use correct branch for PR.

- Second attempt at pushing and merging.

- Pass token.

- Merge PRs instead of committing to main.

- Fix edge case of no suggested packages.

- Use workflows from actions-sync.

- Sync rcc workflows.

- Sync codecov workflows.

## Documentation

- Register usage of poissontemplate (@maelle, #138).

## Uncategorized

- Add `chk_complex()` and `vld_complex()`. (#158).

- Added `chk_complex()` and `vld_complex()`. (#158).
- Added `chk_raw()` and `vld_raw()` (#157).

- Merge branch 'main' of github.com:poissonconsulting/chk.

- Soft-deprecate `chk_lgl()` for `chk_scalar()` and `chk_logical()`.

- - Avoid nested backticks.

- Merge pull request #143 from flor14/docs_references.

- Merge pull request #145 from flor14/docs_roxygen.

- Merge pull request #141 from flor14/docs_getstarted.

- Merge pull request #142 from flor14/docs_chk_families.

- Merge pull request #134 from poissonconsulting/upkeep-2024-08.

- Same as previous version.

- Soft-deprecated `chk_lgl()` for `chk_scalar()` and `chk_logical()`.
- Fixed nested backticks so that error messages only have one set of backticks.

# chk 0.9.2

Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ my_fun(TRUE)
my_fun(NA)
```

Error messages follow the [tidyverse style guide](https://style.tidyverse.org/error-messages.html) while the errors themselves are [rlang errors](https://rlang.r-lib.org/reference/abort.html) of class `chk_error`.
Error messages follow the [tidyverse style guide](https://style.tidyverse.org/errors.html) while the errors themselves are [rlang errors](https://rlang.r-lib.org/reference/abort.html) of class `chk_error`.

## Information

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ my_fun(NA)
```

Error messages follow the [tidyverse style
guide](https://style.tidyverse.org/error-messages.html) while the errors
guide](https://style.tidyverse.org/errors.html) while the errors
themselves are [rlang
errors](https://rlang.r-lib.org/reference/abort.html) of class
`chk_error`.
Expand Down
7 changes: 1 addition & 6 deletions vignettes/chk-families.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -631,11 +631,6 @@ Function | Description
`check_files(x, exists)` | Checks if all files exist (or if exists = FALSE do not exist as files or directories).
`check_names(x, names, exclusive, order)` | Checks the names of an object.


## References

Wickham, H. (2019). Advanced R, Second Edition (2nd ed.). Chapman and Hall/CRC. https://doi.org/10.1201/9781351201315




Wickham, H. (2019). Advanced R, Second Edition (2nd ed.). Chapman and Hall/CRC.
2 changes: 1 addition & 1 deletion vignettes/chk.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ y <- NA
chk_flag(y)
```

The error messages, which follow the [tidyverse style guide](https://style.tidyverse.org/error-messages.html), are designed to allow the user to quickly identify the problem with the argument value(s) they are providing.
The error messages, which follow the [tidyverse style guide](https://style.tidyverse.org/errors.html), are designed to allow the user to quickly identify the problem with the argument value(s) they are providing.
The errors are [rlang errors](https://rlang.r-lib.org/reference/abort.html) of subclass `'chk_error'`.

### 2. `vld_` Functions
Expand Down

0 comments on commit 536990c

Please sign in to comment.