/usr/lib/R/site-library/rprojroot/NEWS.md is in r-cran-rprojroot 1.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | # rprojroot 1.2 (2017-01-15)
- New root criteria
- `is_projectile_project` recognize projectile projects (#21).
- `has_dir()` constructs root criteria that check for existence of a directory.
- `is_git_root`, `is_svn_root` and `is_vcs_root` look for a version control system root (#19).
- New function
- `get_root_desc()` returns the description of the criterion that applies to a given root, useful for composite criteria created with `|`.
- Minor enhancements
- Improve formatting of alternative criteria (#18).
- If root cannot be found, the start path is shown in the error message.
- Internal
- The `$testfun` member of the `rprojroot` S3 class is now a list of functions instead of a function.
# rprojroot 1.1 (2016-10-29)
- Compatibility
- Compatible with R >= 3.0.0 with the help of the `backports` package.
- New root criteria
- `is_remake_project` and `find_remake_root_file()` look for [remake](https://github.com/richfitz/remake) project (#17).
- `is_testthat` and `find_testthat_root_file()` that looks for `tests/testthat` root (#14).
- `from_wd`, useful for creating accessors to a known path (#11).
- Minor enhancement
- Criteria can be combined with the `|` operator (#15).
- Documentation
- Add package documentation with a few examples (#13).
- Clarify difference between `find_file()` and `make_fix_file()` in vignette (#9).
- Remove unexported functions from documentation and examples (#10).
- Use `pkgdown` to create website.
- Testing
- Use Travis instead of wercker. Travis tests three R versions, and OS X.
- Improve AppVeyor testing.
# rprojroot 1.0-2 (2016-03-28)
- Fix test that fails on Windows only on CRAN.
# rprojroot 1.0 (2016-03-26)
Initial CRAN release.
- S3 class `root_criterion`:
- Member functions: `find_file()` and `make_fix_file()`
- `root_criterion()`
- `as.root_criterion()`
- `is.root_criterion()`
- `has_file()`
- `has_file_pattern()`
- Built-in criteria:
- `is_r_package`
- `is_rstudio_project`
- Getting started:
- `find_package_root_file()`
- `find_rstudio_root_file()`
- Use a custom notion of a project root:
- `find_root()`
- `find_root_file()`
- Vignette
|