From b7af7f8f4faaf772007450d1e77a65adf7e5e3a7a981a7795d31fdc343ffef0e Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Tue, 15 Nov 2011 14:46:13 +0000 Subject: [PATCH] - updated to 2.0.3: ** Guile has a new optimizer, `peval'. ** New module: `(web client)', a simple synchronous web client. ** Users can now install compiled `.go' files. ** Remove Front-Cover and Back-Cover text from the manual. ** More helpful `guild help'. ** New macro: `define-syntax-rule' ** The `,time' REPL meta-command now has more precision. ** `(ice-9 match)' can now match records. ** New module: `(language tree-il debug)'. ** New functions: `scm_is_exact', `scm_is_inexact'. ** Fix order of importing modules and resolving duplicates handlers. ** Fix a number of bugs involving extended (merged) generics. ** Fix invocation of merge-generics duplicate handler. ** Fix write beyond array end in arrays.c. ** Fix read beyond end of hashtable size array in hashtab.c. ** (web http): Locale-independent parsing and serialization of dates. ** Ensure presence of Host header in HTTP/1.1 requests. ** Fix take-right and drop-right for improper lists. ** Fix leak in get_current_locale(). ** Fix recursive define-inlinable expansions. ** Check that srfi-1 procedure arguments are procedures. ** Fix r6rs `map' for multiple returns. ** Fix scm_tmpfile leak on POSIX platforms. ** Fix a couple of leaks (objcode->bytecode, make-boot-program). ** Fix guile-lib back-compatibility for module-stexi-documentation. ** Fix --listen option to allow other ports. ** Fix scm_to_latin1_stringn for substrings. ** Fix compilation of untyped arrays of rank not 1. ** Fix unparse-tree-il of . OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/guile?expand=0&rev=28 --- guile.changes | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/guile.changes b/guile.changes index 147b631..c9fc52b 100644 --- a/guile.changes +++ b/guile.changes @@ -1,3 +1,40 @@ +------------------------------------------------------------------- +Tue Nov 15 14:41:20 UTC 2011 - pgajdos@suse.com + +- updated to 2.0.3: + ** Guile has a new optimizer, `peval'. + ** New module: `(web client)', a simple synchronous web client. + ** Users can now install compiled `.go' files. + ** Remove Front-Cover and Back-Cover text from the manual. + ** More helpful `guild help'. + ** New macro: `define-syntax-rule' + ** The `,time' REPL meta-command now has more precision. + ** `(ice-9 match)' can now match records. + ** New module: `(language tree-il debug)'. + ** New functions: `scm_is_exact', `scm_is_inexact'. + ** Fix order of importing modules and resolving duplicates handlers. + ** Fix a number of bugs involving extended (merged) generics. + ** Fix invocation of merge-generics duplicate handler. + ** Fix write beyond array end in arrays.c. + ** Fix read beyond end of hashtable size array in hashtab.c. + ** (web http): Locale-independent parsing and serialization of dates. + ** Ensure presence of Host header in HTTP/1.1 requests. + ** Fix take-right and drop-right for improper lists. + ** Fix leak in get_current_locale(). + ** Fix recursive define-inlinable expansions. + ** Check that srfi-1 procedure arguments are procedures. + ** Fix r6rs `map' for multiple returns. + ** Fix scm_tmpfile leak on POSIX platforms. + ** Fix a couple of leaks (objcode->bytecode, make-boot-program). + ** Fix guile-lib back-compatibility for module-stexi-documentation. + ** Fix --listen option to allow other ports. + ** Fix scm_to_latin1_stringn for substrings. + ** Fix compilation of untyped arrays of rank not 1. + ** Fix unparse-tree-il of . + ** Fix reading of #||||#. + ** Fix segfault in GOOPS when class fields are redefined. + ** Prefer poll(2) over select(2) to allow file descriptors above FD_SETSIZE. + ------------------------------------------------------------------- Fri Oct 14 11:05:37 UTC 2011 - dimstar@opensuse.org