ANNOUNCE 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. We are pleased to announce the release of Guile 1.8.0. It can be
  2. found here:
  3. ftp://ftp.gnu.org/gnu/guile/guile-1.8.0.tar.gz
  4. Its SHA1 checksum is
  5. 22462680feeda1e5400195c01dee666162503d66 guile-1.8.0.tar.gz
  6. We already know about some issues with 1.8.0, please check the mailing
  7. lists:
  8. http://www.gnu.org/software/guile/mail/mail.html
  9. The NEWS file is quite long. Here are the most interesting entries:
  10. Changes since 1.6:
  11. * Guile is now licensed with the GNU Lesser General Public License.
  12. * The manual is now licensed with the GNU Free Documentation License.
  13. * We now use GNU MP for bignums.
  14. * We now have exact rationals, such as 1/3.
  15. * We now use native POSIX threads for real concurrent threads.
  16. * There is a new way to initalize Guile that allows one to use Guile
  17. from threads that have not been created by Guile.
  18. * Mutexes and condition variables are now always fair. A recursive
  19. mutex must be requested explicitly.
  20. * The low-level thread API has been removed.
  21. * There is now support for copy-on-write substrings and
  22. mutation-sharing substrings.
  23. * A new family of functions for converting between C values and
  24. Scheme values has been added that is future-proof and thread-safe.
  25. * The INUM macros like SCM_MAKINUM have been deprecated.
  26. * The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
  27. SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
  28. * There is a new way to deal with non-local exits and re-entries in
  29. C code, which is nicer than scm_internal_dynamic_wind.
  30. * There are new malloc-like functions that work better than
  31. scm_must_malloc, etc.
  32. * There is a new way to access all kinds of vectors and arrays from
  33. C that is efficient and thread-safe.
  34. * The concept of dynamic roots has been factored into continuation
  35. barriers and dynamic states.
  36. See NEWS and the manual for more details.