Skip to content

Commit 156c8f8

Browse files
committed
align bundles
1 parent 86df98d commit 156c8f8

File tree

9 files changed

+15
-26
lines changed

9 files changed

+15
-26
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.13.6.9015
4+
Version: 0.13.6.9016
55
Description: R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is
66
a socket library implementing 'Scalability Protocols', a reliable,
77
high-performance standard for common communications patterns including

NEWS.md

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nanonext 0.13.6.9015 (development)
1+
# nanonext 0.13.6.9016 (development)
22

33
#### New Features
44

@@ -12,37 +12,26 @@
1212
* `nng_error()` now returns the error code combined with the message as a character string.
1313
* Integer file descriptors are no longer appended to 'nanoSocket' attributes.
1414
* Adds 'xz' to SystemRequirements (as was the case previously but not explicitly specified) (thanks @gaborcsardi).
15+
* Re-aligns bundled 'libmbedtls' to v3.5.2 and optimises bundle size.
1516
* Updates minimum 'libnng' version requirement to v1.6.0.
1617
* Upgrades bundled 'libnng' to v1.8.0.
1718

18-
# nanonext 0.13.6
19+
# nanonext 0.13.5.2
1920

2021
#### Updates
2122

2223
* Safer and more efficient memory reads for 'next' serialization corrects for CRAN UBSAN-clang check errors.
23-
* Upgrades bundled 'libmbedtls' to v3.6.0 LTS.
2424

25-
# nanonext 0.13.5
26-
27-
#### Updates
28-
29-
* Removes SHA-2 cryptographic hash functions (please use the streaming implementation in the secretbase package).
30-
31-
# nanonext 0.13.4
32-
33-
#### New Features
34-
35-
* An integer file descriptor is appended to 'nanoSockets' as the attribute 'fd' - see updated documentation for `socket()`.
36-
37-
# nanonext 0.13.3
25+
# nanonext 0.13.5.1
3826

3927
#### New Features
4028

4129
* `next_config()` gains argument 'class' and 'vec', enabling custom serialization for all reference object types supported by R serialization.
30+
* An integer file descriptor is appended to 'nanoSockets' as the attribute 'fd' - see updated documentation for `socket()`.
4231

4332
#### Updates
4433

45-
* Upgrades bundled 'libnng' to v1.7.3.
34+
* Removes SHA-2 cryptographic hash functions (please use the streaming implementation in the secretbase package).
4635

4736
# nanonext 0.13.2
4837

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ vignette("nanonext", package = "nanonext")
181181

182182
Installation from source requires ‘libnng’ \>= v1.6.0 and ‘libmbedtls’
183183
\>= 2.5.0 (suitable installations are automatically detected), or else
184-
‘cmake’ to compile ‘libnng’ v1.8.0 and ‘libmbedtls’ v3.6.0 LTS included
184+
‘cmake’ to compile ‘libnng’ v1.8.0 and ‘libmbedtls’ v3.5.2 included
185185
within the package sources.
186186

187187
**It is recommended for optimal performance and stability to let the
@@ -205,11 +205,11 @@ OpenCSW - refer to the ‘cmake’ website for the latest source file.*
205205
#### Windows
206206

207207
For R \>= 4.2 using the ‘Rtools42’ or newer toolchains, ‘libnng’ v1.8.0
208-
and ‘libmbedtls’ v3.6.0 LTS will be automatically compiled from the
209-
package sources during installation.
208+
and ‘libmbedtls’ v3.5.2 will be automatically compiled from the package
209+
sources during installation.
210210

211211
For previous R versions, pre-compiled ‘libnng’ v1.8.0 and ‘libmbedtls’
212-
v3.6.0 LTS libraries are downloaded and used for installation instead.
212+
v3.6.0 libraries are downloaded and used for installation instead.
213213

214214
### Acknowledgements and Links
215215

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22

33
# Library versions
4-
LIB_VER="29b7396"
5-
TLS_VER="2ca6c28"
4+
LIB_VER="aac4dc3"
5+
TLS_VER="daca7a3"
66

77
# Initialise
88
PKG_CFLAGS=""

configure.ucrt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Library versions
2-
LIB_VER="29b7396"
3-
TLS_VER="2ca6c28"
2+
LIB_VER="aac4dc3"
3+
TLS_VER="daca7a3"
44

55
tar -xf src/mbedtls-$TLS_VER.tar.xz
66
cd mbedtls-$TLS_VER

src/mbedtls-2ca6c28.tar.xz

-404 KB
Binary file not shown.

src/mbedtls-daca7a3.tar.xz

385 KB
Binary file not shown.

src/nng-29b7396.tar.xz

-200 KB
Binary file not shown.

src/nng-aac4dc3.tar.xz

196 KB
Binary file not shown.

0 commit comments

Comments
 (0)