Skip to content

Commit 3d47c8a

Browse files
author
tnagler
committed
bump version, update docs
1 parent d324410 commit 3d47c8a

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RcppThread
22
Title: R-Friendly Threading in C++
3-
Version: 2.1.8
3+
Version: 2.2.0
44
Authors@R: c(
55
person("Thomas", "Nagler",, "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-1855-0046"))
@@ -12,7 +12,7 @@ License: MIT + file LICENSE
1212
Encoding: UTF-8
1313
URL: https://github.com/tnagler/RcppThread
1414
BugReports: https://github.com/tnagler/RcppThread/issues
15-
RoxygenNote: 7.2.3
15+
RoxygenNote: 7.3.2.9000
1616
Suggests:
1717
testthat,
1818
R.rsp,

NEWS.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
# RcppThread 2.1.8
1+
# RcppThread 2.2.0
2+
3+
NEW FEATURE
4+
5+
* Added `RMatrix` class (from the RcppParallel package) to allow
6+
for thread safe access to R matrices (#74, thanks @rorynolan).
27

38
BUG FIX
49

5-
* Fixed compilation warning about R_NO_REMAP being defined multiple times (thanks @tylermorganwall)
10+
* Fixed compilation warning about R_NO_REMAP being defined multiple times
11+
(#77, thanks @tylermorganwall)
612

713
# RcppThread 2.1.7
814

RcppThread.Rproj

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Version: 1.0
2+
ProjectId: 03c39b4a-0754-48d2-864e-5e4396eea505
23

34
RestoreWorkspace: No
45
SaveWorkspace: No

inst/include/RcppThread/SafeTypes.hpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
// Copyright © 2022 Thomas Nagler
2-
//
3-
// This file is part of the RcppThread and licensed under the terms of
4-
// the MIT license. For a copy, see the LICENSE.md file in the root
5-
// directory of RcppThread or
6-
// https://github.com/tnagler/RcppThread/blob/master/LICENSE.md.
1+
// Courtesy of RcppParallel: https://github.com/RcppCore/RcppParallel
72

83
#pragma once
94

@@ -12,6 +7,9 @@
127

138
namespace RcppThread {
149

10+
11+
// Thread safe safe matrix wrapper, courtesy of RcppParallel:
12+
// https://github.com/RcppCore/RcppParallel
1513
template <typename T> class RMatrix {
1614
public:
1715
class Row {

man/RcppThread.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)