Skip to content

Commit 17bf41f

Browse files
authored
Merge pull request #413 from mrc-ide/hotfix-cpp11-spelling
2 parents 7015437 + 4e66870 commit 17bf41f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dust
22
Title: Iterate Multiple Realisations of Stochastic Models
3-
Version: 0.14.8
3+
Version: 0.14.9
44
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
55
email = "[email protected]"),
66
person("Alex", "Hill", role = "aut"),
@@ -26,7 +26,7 @@ Language: en-GB
2626
Requires: R (>= 4.0.0)
2727
Imports:
2828
R6,
29-
cpp11 (>= 0.2.6),
29+
cpp11 (>= 0.4.4),
3030
glue,
3131
pkgbuild (>= 1.2.0),
3232
pkgload,

inst/include/dust/r/helpers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cpp11::integers as_integer(cpp11::sexp x, const char * name) {
2626
cpp11::writable::integers ret = cpp11::writable::integers(len);
2727
for (size_t i = 0; i < len; ++i) {
2828
double el = xn[i];
29-
if (!cpp11::is_convertable_without_loss_to_integer(el)) {
29+
if (!cpp11::is_convertible_without_loss_to_integer(el)) {
3030
cpp11::stop("All elements of '%s' must be integer-like",
3131
name, i + 1);
3232
}

inst/include/dust/random/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#define DUST_VERSION_MAJOR 0
66
#define DUST_VERSION_MINOR 14
7-
#define DUST_VERSION_PATCH 8
8-
#define DUST_VERSION_STRING "0.14.8"
9-
#define DUST_VERSION_CODE 1408
7+
#define DUST_VERSION_PATCH 9
8+
#define DUST_VERSION_STRING "0.14.9"
9+
#define DUST_VERSION_CODE 1409
1010

1111
#endif

0 commit comments

Comments
 (0)