- Auto-update from GitHub Actions (#167).
-
Fix comment (#165).
-
Tweaks (#164).
-
Test all R versions on branches that start with cran- (#163).
- Install binaries from r-universe for dev workflow (#161).
- Fix reviewdog and add commenting workflow (#158).
- Use workflows for fledge (#156).
- Sync (#154).
- CRAN release v1.0.2 (#149).
- Discover VS Code, Quarto and renv projects (#128, #130).
- Change maintainer e-mail.
-
Fix link to "What they forgot" chapter (@Masterxilo, #101).
-
Fixed "heuristics" typo (@t-gummer, #91).
- Adapt to testthat 3.0.1.
- New
here::i_am()offers a new recommended way to declare the project root. Instead of relying on special files or directories that indicate the project root, each script and report now can declare its own location relative to the project root (#27). dr_here()shows the initial and current working directory (#18, #55).
- Improve readme and add "Getting started" vignette (#44, @sharlagelfand). Extend "Getting started" vignette with a detailed description of the behavior and use cases (#55).
- Update
?hereto address conflict withlubridate::here()(#37, @nzgwynn). - New "rmarkdown" vignette (#55).
set_here()is superseded in favor ofhere::i_am()(#61).- More explicit documentation for the
...argument tohere()(#7).
- Add testthat tests (#57).
- Use GitHub Actions for checks (#52).
- Requires rprojroot >= 2.0.1.
- Re-license as MIT (#50).
- Added Jennifer Bryan as contributor (#32).
Initial CRAN release.
- Main function
here()- Uses a fixed root that contains a
.herefile or can be either an RStudio project, an R package, aremakeproject, a Projectile project, or a VCS repository. - The root is established at package loading time, and shown with a message.
- The current working directory is used as a fallback.
- Uses a fixed root that contains a
- The
set_here()function creates a.herefile so that a directory is recognized as root byhere(). - The
dr_here()function explains the reasoning ofhere()for the current session.