lloda pushed a commit to branch main in repository guile. commit 28ce7dc5444fe715d5514b5a3a9247de0d29da35 Author: Rob Browning <r...@defaultvalue.org> AuthorDate: Thu Aug 14 15:34:34 2025 -0500
NEWS: mention srfi-207 support * NEWS: mention srfi-207 support --- NEWS | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/NEWS b/NEWS index 4e7701ca1..291fd51d5 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,16 @@ Changes in 3.0.11 (since 3.0.10) * Notable changes +** Guile supports SRFI-207: String notated bytevectors (bytestrings) + +Guile can now read and write #u8"\xe2;\x88;\x9e; Improbability\n" style +bytestrings when they are enabled by `(read-enable 'bytestrings)` and +`(print-enable 'bytestrings)` respectively. See "SRFI-207 String-notated +bytevectors" in the info pages for additional information. + +All of the SRFI-207 procedures have also been added, including support +for hex and base64 encoding and decoding. + ** R7RS `cond-expand` now supports `else` (<https://debbugs.gnu.org/71304>) ** The SRFI-64 module for test suites has been rewritten