Skip to content

Commit 0a8bda3

Browse files
authored
watcher 0.1.4
1 parent 41f4b66 commit 0a8bda3

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
^_pkgdown\.yml$
77
^docs$
88
^pkgdown$
9+
^revdep$
910
^codecov\.yml$
1011
^cran-comments\.md$
1112
^[\.]?air\.toml$

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
.Ruserdata
55
install
66
docs
7+
revdep
78
.vscode
89
air.toml

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: watcher
33
Title: Watch the File System for Changes
4-
Version: 0.1.3.9000
4+
Version: 0.1.4
55
Authors@R: c(
66
person("Charlie", "Gao", , "charlie.gao@posit.co", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0002-0750-061X")),

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# watcher (development version)
1+
# watcher 0.1.4
22

3-
* Watcher can now use a system-installed 'libfswatch' in a non-standard filesystem location.
3+
* Watcher can now use a system 'libfswatch' installed in a non-standard location (#28).
44

55
# watcher 0.1.3
66

cran-comments.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
## R CMD check results
22

3-
0 errors | 0 warnings | 0 notes
3+
0 errors | 0 warnings | 1 note
4+
5+
Note on CRAN incoming feasibility: change of maintainer email address.
6+
I've already emailed cran-submissions about this.
7+
8+
## revdepcheck results
9+
10+
We checked 1 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
11+
12+
* We saw 0 new problems
13+
* We failed to check 0 packages
14+

src/watcher.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ static void Wprintf(const char *fmt, ...) {
1414

1515
}
1616

17-
static inline void watcher_error(FSW_HANDLE handle, const char *msg) {
17+
static void watcher_error(FSW_HANDLE handle, const char *msg) {
1818

1919
if (handle) fsw_destroy_session(handle);
2020
Rf_error("%s", msg);
2121

2222
}
2323

24-
static inline void watcher_unwind(watcher_cb *wcb) {
24+
static void watcher_unwind(watcher_cb *wcb) {
2525

2626
if (wcb->paths) {
2727
for (unsigned int i = 0; i < wcb->event_num; i++) {

0 commit comments

Comments
 (0)