-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'r-0.1' into production
- Loading branch information
Showing
6 changed files
with
61 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ | |
^scripts/deploy-pages\.sh$ | ||
^_pkgdown\.yml$ | ||
^tic\.R$ | ||
^cran-comments\.md$ | ||
^docs$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
Package: here | ||
Title: A Simpler Way to Find Your Files | ||
Version: 0.0-6 | ||
Version: 0.1 | ||
Authors@R: person("Kirill", "Müller", role = c("aut", "cre"), email = "[email protected]") | ||
Description: Constructs paths to your project's files. | ||
The 'here()' function uses a reasonable heuristics to find your project's | ||
files, based on the current working directory at the time when the package | ||
is loaded. Use it as a drop-in replacement for 'file.path()', it will always | ||
locate the files relative to your project root. | ||
Imports: rprojroot (>= 1.2) | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Date: 2017-01-16 | ||
Date: 2017-05-27 | ||
URL: https://github.com/krlmlr/here, http://krlmlr.github.io/here | ||
BugReports: https://github.com/krlmlr/here/issues | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 5.0.1.9000 | ||
Remotes: krlmlr/[email protected] | ||
RoxygenNote: 6.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,10 @@ | ||
## here 0.0-6 (2017-01-16) | ||
# here 0.1 (2017-01-25) | ||
|
||
- New `set_here()` function that creates a `.here` file and talks about it by default (#1). | ||
- New `dr_here()`, describes why `here()` has settled for a particular path. | ||
- Recognize projectile projects and VCS roots. | ||
- Using working directory as fallback produces wrong results, reverted. | ||
Initial CRAN release. | ||
|
||
|
||
## here 0.0-5 (2016-10-29) | ||
|
||
- `remake` projects are also recognized by default. | ||
- Silently falling back to current working directory if no root found. | ||
|
||
|
||
## here 0.0-4 (2016-10-29) | ||
|
||
- `pkgdown`. | ||
|
||
|
||
## here 0.0-3 (2016-07-19) | ||
|
||
- Install `rprojroot` from GitHub. | ||
- Show message only when attaching. | ||
|
||
|
||
## here 0.0-2 (2016-07-19) | ||
|
||
- Better argument documentation. | ||
- README. | ||
|
||
|
||
## here 0.0-1 (2016-07-19) | ||
|
||
- A single function `here()` | ||
- Uses a fixed root that can be either an RStudio project, or an R package | ||
- The root is established at package loading time, and shown with a message | ||
- Main function `here()` | ||
- Uses a fixed root that contains a `.here` file or can be either an RStudio project, an R package, a `remake` project, 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. | ||
- The `set_here()` function creates a `.here` file so that a directory is recognized as root by `here()`. | ||
- The `dr_here()` function explains the reasoning of `here()` for the current session. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## Test environments | ||
* local Ubuntu 16.10 install, R 3.4.0 | ||
* ubuntu 12.04 (on travis-ci), R release, devel, and oldrel | ||
* win-builder (devel and release) | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
|
||
* This is a new release. | ||
|
||
## Reverse dependencies | ||
|
||
This is a new release, so there are no reverse dependencies. |