unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: ludo@gnu.org (Ludovic Courtès)
To: guile-user@gnu.org
Cc: guile-devel@gnu.org
Subject: GNU Guile 1.9.4 released (alpha)
Date: Fri, 16 Oct 2009 00:31:30 +0200	[thread overview]
Message-ID: <87pr8ol265.fsf@gnu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 5727 bytes --]

We are pleased to announce GNU Guile release 1.9.4.  This is the next
pre-release of what will eventually become the 2.0 release series.  It
provides many new noteworthy features, most notably the addition of a
compiler and virtual machine.  We encourage you to test them and provide
feedback to `guile-devel@gnu.org'.

The Guile web page is located at http://gnu.org/software/guile/, and
among other things, it contains a link to the Guile FAQ and pointers to
the mailing lists.

Guile is an implementation of the Scheme programming language, with
support for many SRFIs, packaged for use in a wide variety of
environments.  In addition to implementing the R5RS Scheme standard,
Guile includes a module system, full access to POSIX system calls,
networking support, multiple threads, dynamic linking, a foreign
function call interface, and powerful string processing.

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.


Here are the compressed sources:
  ftp://alpha.gnu.org/gnu/guile/guile-1.9.4.tar.gz   (4.4MB)

Here are the GPG detached signatures[*]:
  ftp://alpha.gnu.org/gnu/guile/guile-1.9.4.tar.gz.sig

Here are the MD5 and SHA1 checksums:

fc2ae8c7051ef81847fcff2503fc4cb0  guile-1.9.4.tar.gz
6fdaab75d25bba1bcfee92c5cc12f99f6ac90a46  guile-1.9.4.tar.gz

[*] You can use either of the above signature files 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-1.9.4.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 EA52ECF4

and rerun the `gpg --verify' command.

This release was bootstrapped with the following tools:
  Autoconf 2.64
  Automake 1.11
  Libtool 2.2.6


This is a new release series with many new features and differences
compared to 1.8.  The complete list of changes compared to the 1.8.x
series is available in the `NEWS' file.

Changes since the 1.9.3 pre-release:

  ** Guile now adds its install prefix to the LTDL_LIBRARY_PATH

  Users may now install Guile to nonstandard prefixes and just run
  `/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
  include `/path/to/lib'.

  ** Dynamically loadable extensions may be placed in a Guile-specific path

  Before, Guile only searched the system library paths for extensions
  (e.g. /usr/lib), which meant that the names of Guile extensions had to
  be globally unique. Installing them to a Guile-specific extensions
  directory is cleaner. Use `pkg-config --variable=extensionsdir
  guile-2.0' to get the location of the extensions directory.

  ** The programmatic `compile' procedure compiles its expression in a
     fresh module, by default

  This should make the results of `compile' more predictable. Users may
  specify a specific module in which to compile via the `#:env' keyword
  argument to `compile' (and `compile-file').

  ** `compile-file' preserves expansion-time side-effects to `current-reader'

  User modules may now modify the `current-reader' fluid at expansion
  time, usually within an eval-when, and those modifications will remain
  in place when compiling subsequent forms in the file.

  See "The Scheme Compiler" in the Guile manual for more details.

  ** Guile's Emacs integration is now more keyboard-friendly

  Backtraces may now be disclosed with the keyboard in addition to the
  mouse.

  ** Compile-time warnings: -Wunbound-variable

  Guile can warn about potentially unbound free variables. Pass the
  -Wunbound-variable on the `guile-tools compile' command line, or add
  `#:warnings '(unbound-variable)' to your `compile' or `compile-file'
  invocation.

  ** Wide character/string support in locale-specific character/string
     functions

  The `(ice-9 i18n)' functions (`string-locale<?', etc.) now work
  correctly on wide strings as well. This should finish off the remaining
  Unicode support patches. Please send any Unicode bug reports to
  `bug-guile@gnu.org'.

  ** ABI harmonization

  `scm_primitive_load_path' now has the signature it did in 1.8.
  `scm_array_p' does as well, reverting an incompatible change made in
  1.9.3. Finally, Guile now has the same ABI when built with or without
  threads, something that should make Debian users happy.

  ** And of course, the usual collection of bugfixes

  Interested users should see the ChangeLog for more information.


You can follow Guile development in the Git repository and on the Guile
mailing lists.  Guile builds from the `master' branch of Git have
version number 1.9.x.

Guile versions with an odd middle number, e.g., 1.9.*, are unstable
development versions.  Even middle numbers indicate stable versions.
This has been the case since the 1.3.* series.

Please report bugs to `bug-guile@gnu.org'.  We also welcome reports of
successful builds, which can be sent to the same email address.


Ludovic Courtès, on behalf of the Guile team.

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

             reply	other threads:[~2009-10-15 22:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-15 22:31 Ludovic Courtès [this message]
2009-10-16  9:35 ` GNU Guile 1.9.4 released (alpha) Andy Wingo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87pr8ol265.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=guile-devel@gnu.org \
    --cc=guile-user@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).