2 Commits 7311a8fe18 ... 2e89f7f3a6

Author SHA1 Message Date
  Ludovic Courtès 2e89f7f3a6 Update NEWS. 3 years ago
  Ludovic Courtès 0e841effa3 maint: Pass all the arguments to 'AC_INIT'. 3 years ago
2 changed files with 32 additions and 1 deletions
  1. 28 0
      NEWS
  2. 4 1
      configure.ac

+ 28 - 0
NEWS

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

+ 4 - 1
configure.ac

@@ -1,4 +1,7 @@
-AC_INIT(guile-zlib, 0.1)
+AC_PREREQ([2.69])
+AC_INIT([Guile-zlib], [0.1], [guile-user@gnu.org], [guile-zlib],
+  [https://notabug.org/guile-zlib/guile-zlib])
+
 AC_SUBST(HVERSION, "\"0.1\"")
 AC_SUBST(AUTHOR, "\"Mathieu Othacehe\"")
 AC_SUBST(COPYRIGHT, "'(2020)")