[pure-lang-svn] SF.net SVN: pure-lang:[885] pure/trunk
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-09-27 16:18:49
|
Revision: 885 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=885&view=rev Author: agraef Date: 2008-09-27 16:18:43 +0000 (Sat, 27 Sep 2008) Log Message: ----------- Bump version number, update ChangeLog and NEWS. Modified Paths: -------------- pure/trunk/ChangeLog pure/trunk/NEWS pure/trunk/configure pure/trunk/configure.ac Modified: pure/trunk/ChangeLog =================================================================== --- pure/trunk/ChangeLog 2008-09-27 16:03:46 UTC (rev 884) +++ pure/trunk/ChangeLog 2008-09-27 16:18:43 UTC (rev 885) @@ -1,3 +1,16 @@ +2008-09-27 Albert Graef <Dr....@t-...> + + * configure.ac: Bump version number. + + * lib/matrices.pure, interpreter.cc/h: Added missing + complex->double/int matrix conversions. Thorough overhaul of + matrix<->pointer conversions, which now provide a complete set of + conversions from/to any reasonable C array representation, + including float, complex float, short and byte arrays. + + * lib/prelude.pure: Fix a bug in cat which broke catmap on + strings. Reported by Eddie Rucker. + 2008-09-25 Albert Graef <Dr....@t-...> * 0.7 release. Modified: pure/trunk/NEWS =================================================================== --- pure/trunk/NEWS 2008-09-27 16:03:46 UTC (rev 884) +++ pure/trunk/NEWS 2008-09-27 16:18:43 UTC (rev 885) @@ -1,6 +1,14 @@ -** Pure 0.7 (2008-09-26) +** Pure 0.8 (in progress) +This is a maintenance release. It fixes a rather annoying bug in catmap +(reported by Eddie Rucker) and some minor glitches in the Makefile and the +documentation. Also, the matrix conversion operations in matrices.pure have +been overhauled (in particular, the matrix pointer conversions are much more +complete now). Details can be found in the ChangeLog. + +** Pure 0.7 2008-09-26 + This release brings an important new feature: GSL (GNU Scientific Library) matrix support. Here's a brief overview of the new stuff. For more information on GSL please refer to http://www.gnu.org/software/gsl. Modified: pure/trunk/configure =================================================================== --- pure/trunk/configure 2008-09-27 16:03:46 UTC (rev 884) +++ pure/trunk/configure 2008-09-27 16:18:43 UTC (rev 885) @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for pure 0.7. +# Generated by GNU Autoconf 2.61 for pure 0.8. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @@ -572,8 +572,8 @@ # Identity of this package. PACKAGE_NAME='pure' PACKAGE_TARNAME='pure' -PACKAGE_VERSION='0.7' -PACKAGE_STRING='pure 0.7' +PACKAGE_VERSION='0.8' +PACKAGE_STRING='pure 0.8' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -1199,7 +1199,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures pure 0.7 to adapt to many kinds of systems. +\`configure' configures pure 0.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1264,7 +1264,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of pure 0.7:";; + short | recursive ) echo "Configuration of pure 0.8:";; esac cat <<\_ACEOF @@ -1358,7 +1358,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -pure configure 0.7 +pure configure 0.8 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1372,7 +1372,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by pure $as_me 0.7, which was +It was created by pure $as_me 0.8, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -6716,7 +6716,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by pure $as_me 0.7, which was +This file was extended by pure $as_me 0.8, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6765,7 +6765,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -pure config.status 0.7 +pure config.status 0.8 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Modified: pure/trunk/configure.ac =================================================================== --- pure/trunk/configure.ac 2008-09-27 16:03:46 UTC (rev 884) +++ pure/trunk/configure.ac 2008-09-27 16:18:43 UTC (rev 885) @@ -2,7 +2,7 @@ dnl To regenerate the configury after changes: dnl autoconf -I config && autoheader -I config -AC_INIT(pure, 0.7) +AC_INIT(pure, 0.8) AC_CONFIG_AUX_DIR(config) dnl AC_CONFIG_MACRO_DIR(config) AC_CONFIG_HEADERS(config.h) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |