Skip to content

Commit

Permalink
0.2.3 dev version start
Browse files Browse the repository at this point in the history
  • Loading branch information
b-rodrigues committed Mar 20, 2024
1 parent c2dba9f commit 23b6b13
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 9 deletions.
11 changes: 4 additions & 7 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: chronicler
Title: Add Logging To Functions
Version: 0.2.1.9999
Version: 0.2.2.9999
Authors@R: c(
person("Bruno", "Rodrigues", , "bruno@brodrigues.co", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0002-3211-3689")),
Expand All @@ -14,9 +14,8 @@ Description: Decorate functions to make them return enhanced output. The
information. Tools to handle decorated functions are included, such as
a forward pipe operator that makes chaining decorated functions
possible.
License: GPL (>= 3)
Depends:
R (>= 2.10)
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
license
Imports:
clipr,
diffobj,
Expand All @@ -32,13 +31,11 @@ Suggests:
lubridate,
purrr,
rmarkdown,
testthat (>= 3.0.0),
testthat,
tidyr
VignetteBuilder:
knitr
Config/fusen/version: 0.5.2
Config/testthat/edition: 3
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
37 changes: 37 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# Submission of version 0.2.2

Minor update, to take tidyselect v 1.2.1 into account: two unit tests
didn't pass anymore due to his update, so this has been fixed as requested
by CRAN team before 2024-03-26.

Running checks on Rhub resulted in notes, but I believe it's not
relevant for releasing on CRAN.

## Test environments

## R CMD check results

- R-hub windows-x86_64-devel (r-devel)
- R-hub ubuntu-gcc-release (r-release)
- R-hub fedora-clang-devel (r-devel)


> On windows-x86_64-devel (r-devel)
NOTES:
* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
''NULL''
* checking for detritus in the temp directory ... NOTE
Found the following files/directories:
'lastMiKTeXException'

> RHUB_PLATFORM=linux-x86_64-fedora-clang
NOTES:
* checking HTML version of manual ... NOTE
Skipping checking HTML validation: no command 'tidy' found

> RHUB_PLATFORM=linux-x86_64-ubuntu-gcc
NOTES:
* checking HTML version of manual ... NOTE
Skipping checking HTML validation: no command 'tidy' found

# Submission of version 0.2.1

Minor update, to take dplyr v 1.1.0 into account.
Expand Down
5 changes: 4 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ let
r_packages = builtins.attrValues {
inherit (pkgs.rPackages) devtools clipr diffobj dplyr ggplot2 maybe rlang stringr tibble knitr lubridate purrr rmarkdown testthat tidyr rhub fusen;
};
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-small;
});
in
pkgs.mkShell {
LOCALE_ARCHIVE = if pkgs.system == "x86_64-linux" then "${pkgs.glibcLocalesUtf8}/lib/locale/locale-archive" else "";
Expand All @@ -16,6 +19,6 @@ let
LC_PAPER = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";

buildInputs = [ system_packages r_packages];
buildInputs = [ system_packages r_packages tex];

}
2 changes: 1 addition & 1 deletion dev/0-dev_history.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fusen::fill_description(
decorated functions are included, such as a forward pipe operator that makes
chaining decorated functions possible.",
Version = "0.2.1.9999",
Version = "0.2.2.9999",
`Authors@R` = c(
person(given = "Bruno", family = "Rodrigues", email = "bruno@brodrigues.co", role = c("aut", "cre", "cph"),
Expand Down

0 comments on commit 23b6b13

Please sign in to comment.