NEWS 1.0 KB

1234567891011121314151617181920212223242526272829
  1. -*- org -*-
  2. #+TITLE: Guile-zlib NEWS – history of user-visible changes
  3. #+STARTUP: content hidestars
  4. Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
  5. Copying and distribution of this file, with or without modification,
  6. are permitted in any medium without royalty provided the copyright
  7. notice and this notice are preserved.
  8. Please report bugs at <https://notabug.org/guile-zlib/guile-zlib>.
  9. * Changes in 0.1.0 (compared to 0.0.1)
  10. ** New procedures: ‘make-zlib-input-port’, ‘make-zlib-output-port’
  11. These procedures and the companion ‘call-with-zlib-*’ procedures
  12. provide an alternative to the ‘make-gzip-*’ and ‘call-with-gzip-*’
  13. procedures; unlike those, they operate on all types of ports, not
  14. just file ports.
  15. These procedures also support multiple formats: raw “deflate”,
  16. “zlib”, and “gzip”.
  17. ** New ‘compress’ and ‘uncompress’ procedures
  18. These procedures support compression/decompression of individual
  19. bytevectors.