Skip to content

Commit 1b7bf63

Browse files
author
tnagler
committed
Release 1.0.0
1 parent a0532da commit 1b7bf63

File tree

4 files changed

+24
-14
lines changed

4 files changed

+24
-14
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ inst/include/mainpage.h
1111
^cran-comments\.md$
1212
revdep
1313
^\.github$
14+
^CRAN-RELEASE$

NEWS.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# RcppThread 1.0.0
2+
3+
* Release for JSS publication <doi:10.18637/jss.v097.c01>.
4+
5+
16
# RcppThread 0.5.4
27

38
* Fixed warning for move constructor in ThreadPool (#35, #36, thanks @asardaes
@@ -31,8 +36,7 @@ BUG FIXES
3136

3237
DEPENDENCIES
3338

34-
* Rcpp is no longer a hard dependency, but only used for unit tests. This avoids
35-
unneccessary compilation time during package installation.
39+
* Rcpp is no longer a hard dependency, but only used for unit tests. This avoids unnecessary compilation time during package installation.
3640

3741
NEW FEATURES
3842

@@ -59,7 +63,7 @@ NEW FEATURE
5963

6064
NEW FEATURE
6165

62-
* A `ThreadPool` can now be intantiated with zero threads in the pool. It
66+
* A `ThreadPool` can now be instantiated with zero threads in the pool. It
6367
will then do all work pushed to it in the main thread.
6468

6569

@@ -76,7 +80,7 @@ NEW FEATURE
7680

7781
BUG FIX
7882

79-
* Don't check print ouptut of multi-threaded code b/c of random results.
83+
* Don't check print output of multi-threaded code b/c of random results.
8084

8185

8286
# RcppThread 0.1.2
@@ -100,4 +104,4 @@ BUG FIX
100104

101105
# RcppThread 0.1.0
102106

103-
* Intial release.
107+
* Initial release.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ before including any headers in your source code.
6868

6969
## Automatic override of `std::cout` and `std::thread`
7070

71-
There are preprocessor options to replace all occurences of `std::cout` and
71+
There are preprocessor options to replace all occurrences of `std::cout` and
7272
`std::thread` with calls to `RcppThread::Rcout` and `RcppThread::Thread`
7373
(provided that the RcppThread headers are included first). To enable this, use
7474
```

cran-comments.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1+
The DOI in the CITATION, DESCRIPTION, and documentation is for a new JSS publication that will be registered after publication on CRAN.
2+
13
## Test environments
2-
* ubuntu 14.04 (release, devel)
3-
* Windows server (devel)
4+
* ubuntu 16.04 (devel, release, old-rel)
5+
* macOS X (release)
6+
* Windows Server 2019 (release)
7+
* CRAN win builder (devel)
48

59
## R CMD check results
610

7-
0 errors | 0 warnings | 0 notes
11+
0 errors | 0 warnings | 1 note
12+
13+
* Note caused by invalid DOI.
814

915
## Reverse dependencies
1016

11-
dtwclust: 0 errors | 0 warnings | 1 note
12-
rayrender: 0 errors | 0 warnings | 0 notes
13-
RcppAlgos: 0 errors | 0 warnings | 1 note
14-
rvinecopulib: 0 errors | 0 warnings | 1 note
17+
We checked 11 reverse dependencies (11 from CRAN), comparing R CMD check results across CRAN and dev versions of this package.
18+
19+
* We saw 0 new problems
20+
* We failed to check 0 packages
1521

16-
* Notes are not related to this package.

0 commit comments

Comments
 (0)