From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.user,gmane.lisp.guile.sources,gmane.lisp.guile.devel Subject: GNU Guile 3.0.7 released Date: Mon, 10 May 2021 10:58:13 +0200 Message-ID: <875yzrj78a.fsf@pobox.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="26210"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) To: guile-user@gnu.org, guile-sources@gnu.org, guile-devel@gnu.org, info-gnu@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Mon May 10 10:58:46 2021 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lg1kT-0006bk-IV for guile-user@m.gmane-mx.org; Mon, 10 May 2021 10:58:46 +0200 Original-Received: from localhost ([::1]:45486 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lg1kR-0001zg-Rg for guile-user@m.gmane-mx.org; Mon, 10 May 2021 04:58:43 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:55658) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lg1kF-0001z1-Dp; Mon, 10 May 2021 04:58:31 -0400 Original-Received: from fanzine.igalia.com ([178.60.130.6]:38026) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lg1kC-0004a0-Ge; Mon, 10 May 2021 04:58:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From; bh=673cjuiSApqzYS96muYpmeDUmIocaB1fFTnN7edtzoM=; b=ssjxx9x/EXYFp7i92OclCer1jWodDrdXQ7Vy12gO8G9UktXxnuzH0gIvBmlsiQg7+XJ2VLQYtFkavDF54h5DWxMBF68ccy8U/zqgaPpLHJJO/Nuf+ZOZ0sTuUE0OiiZGx6Yk9Vr6hDpxrbmtohs1cJr/AD2aLTLaDD+WT8C0p7fsnXBN9+TpnWi905TRN0XZmTNZitwaWYt7LEv+JyfsxI0ZTHx6go0h/kLhoxKqqibfm6wEohYe4b5gvzSQ0TbUJEDXjwQ9rrvkhg3nOJESGB2Cm6Ac6ff4j6jBPa+y7kFpvlm17Gkk/cos1ANvRKyhCGJcPDtrptbP5ZHYboHDOw==; Original-Received: from 82-65-63-215.subs.proxad.net ([82.65.63.215] helo=sparrow) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1lg1k7-0001eQ-Uy; Mon, 10 May 2021 10:58:24 +0200 Received-SPF: neutral client-ip=178.60.130.6; envelope-from=wingo@pobox.com; helo=fanzine.igalia.com X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, SPF_HELO_NONE=0.001, SPF_NEUTRAL=0.779 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:17519 gmane.lisp.guile.sources:578 gmane.lisp.guile.devel:20760 Archived-At: We are humbled to announce GNU Guile release 3.0.7, the latest in the 3.0 stable release series. This is a fix-up release. Compared to Guile 3.0.6, Guile 3.0.7 fixes a number of bugs, many of which were introduced in the 3.0 series. Compared to the previous stable series (2.2.x), Guile 3.0 adds support for just-in-time native code generation, speeding up all Guile programs. See the NEWS extract at the end of the mail for full details. The Guile web page is located at http://gnu.org/software/guile/, and among other things, it contains a copy of the Guile manual and pointers to more resources. Guile is an implementation of the Scheme programming language, packaged for use in a wide variety of environments. In addition to implementing the R5RS, R6RS, and R7RS Scheme standards, Guile includes full access to POSIX system calls, networking support, multiple threads, dynamic linking, a foreign function call interface, powerful string processing, and HTTP client and server implementations. Guile can run interactively, as a script interpreter, and as a Scheme compiler to VM bytecode. It is also packaged as a library so that applications can easily incorporate a complete Scheme interpreter/VM. An application can use Guile as an extension language, a clean and powerful configuration language, or as multi-purpose "glue" to connect primitives provided by the application. It is easy to call Scheme code from C code and vice versa. Applications can add new functions, data types, control structures, and even syntax to Guile, to create a domain-specific language tailored to the task at hand. Guile 3.0.7 can be installed in parallel with Guile 2.2.x; see http://www.gnu.org/software/guile/manual/html_node/Parallel-Installations.html. A more detailed NEWS summary follows these details on how to get the Guile sources. Here are the compressed sources: http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.lz (10MB) http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.xz (13MB) http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.gz (21MB) Here are the GPG detached signatures[*]: http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.lz.sig http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.xz.sig http://ftp.gnu.org/gnu/guile/guile-3.0.7.tar.gz.sig Use a mirror for higher download bandwidth: http://www.gnu.org/order/ftp.html Here are the SHA256 checksums: f02166205ced31651d27bd037f947e199a442545ca73f913907c69469ddd7b54 guile-3.0.7.tar.lz f57d86c70620271bfceb7a9be0c81744a033f08adc7ceba832c9917ab3e691b7 guile-3.0.7.tar.xz c7935b7a29e42443f6a35d35cf20ffa7d028c399303f872cd1219598a83656ae guile-3.0.7.tar.gz [*] Use a .sig file to verify that the corresponding file (without the .sig suffix) is intact. First, be sure to download both the .sig file and the corresponding tarball. Then, run a command like this: gpg --verify guile-3.0.7.tar.gz.sig If that command fails because you don't have the required public key, then run this command to import it: gpg --keyserver keys.gnupg.net --recv-keys 4FD4D288D445934E0A14F9A5A8803732E4436885 and rerun the 'gpg --verify' command. This release was bootstrapped with the following tools: Autoconf 2.71 Automake 1.16.2 Libtool 2.4.6 Gnulib v0.1-4551-ga3a946f670 Makeinfo 6.7 An extract from NEWS follows. Changes in 3.0.7 (since 3.0.6) * New interfaces and functionality ** More O_* POSIX constants are now defined in Scheme Guile now defines constants such as `O_NOFOLLOW', `O_CLOEXEC', `O_TMPFILE', and more on platforms that support them. These may be passed as arguments to procedures such as `open' and `open-fdes'. * Bug fixes ** Fix bugs introduced in 3.0.6 with Scheme `read` re-write ** Fix deadlock after `primitive-fork' (#41948) ** Fix duplicates handlers for interfaces that use interfaces (#43025) ** Fix compile-psyntax.scm for (language tree-il canonicalize) removal ** Fix prompt compilation bug (#48098) ** Fix R7RS include-library-declarations, cond-expand (#40252) ** Fix --enable-mini-gmp on FreeBSD and other targets ** Fix excessive compile times for vectors >16k elements long ** Fix use of literal tree-il as source language (#45131) ** Fix SRFI-64 test-end to not remove globally-installed test runner