Path to this page:
Subject: CVS commit: pkgsrc/converters/ruby-Ascii85
From: Takahiro Kambe
Date: 2024-09-18 16:37:18
Message id: 20240918143718.E9D2FFC74@cvs.NetBSD.org
Log Message:
converters/ruby-Ascii85: update to 2.0.1
2.0.0 (2024-08-20)
BREAKING CHANGES
* The minimum required Ruby version has been raised to 2.7.0.
Added
* Ascii85.decode_raw method that doesn't expect the input to be wrapped in
<~ and ~> delimiters.
* Ascii85.extract method to extract encoded text from between <~ and ~> for
feeding to #decode_raw.
* Option to pass an IO-object as input to #encode and #decode_raw instead of
a String.
* Option to pass an IO-object to #encode and #decode_raw for output. Output
is written to the object instead of being returned as a String.
* Streaming capability for #encode and #decode_raw when both input and
output are IO objects, using constant memory.
2.0.1 (2024-09-15)
Fixed
* Decoding binary data could lead to Encoding errors (Issue #8)
Files: