Skip to content

Commit ab47277

Browse files
committed
CRAN release 0.10.1
1 parent a34b0b0 commit ab47277

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: nanonext
22
Type: Package
33
Title: NNG (Nanomsg Next Gen) Lightweight Messaging Library
4-
Version: 0.10.0.9011
4+
Version: 0.10.1
55
Description: R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is
66
a socket library providing high-performance scalability protocols, a
77
cross-platform standard for messaging and communications. Serves as a

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# nanonext 0.10.0.9011 (development)
1+
# nanonext 0.10.1
22

33
#### New Features
44

55
* `request()` adds logical argument 'ack', which sends an ack(nowledgement) back to the rep node upon a successful async message receive.
66
* `reap()` implemented as a faster alternative to `close()` for Sockets, Contexts, Listeners and Dialers - avoiding S3 method dispatch, hence works for unclassed external pointers created by `.context()`.
77
* `random()` updated to use the Mbed TLS library to generate random bytes. Adds a 'convert' argument for specifying whether to return a raw vector or character string.
8-
* Adds 'next' as a mode for send functions, as a 100% compatible R serialisation format.
8+
* Adds 'next' as a mode for send functions, as a 100% compatible R serialisation format (may be received using mode 'serial').
99

1010
#### Updates
1111

src/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ void nano_encode(nano_buf *enc, SEXP object) {
287287
break;
288288
}
289289
default:
290-
Rf_error("'data' must be an atomic vector type to send in mode 'raw'");
290+
Rf_error("'data' must be an atomic vector type or NULL to send in mode 'raw'");
291291
}
292292

293293
}

0 commit comments

Comments
 (0)