[pure-lang-svn] SF.net SVN: pure-lang:[765] pure/trunk
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-09-15 06:48:14
|
Revision: 765 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=765&view=rev Author: agraef Date: 2008-09-15 06:48:25 +0000 (Mon, 15 Sep 2008) Log Message: ----------- Bump version number. Modified Paths: -------------- pure/trunk/INSTALL pure/trunk/README pure/trunk/configure pure/trunk/configure.ac Modified: pure/trunk/INSTALL =================================================================== --- pure/trunk/INSTALL 2008-09-15 06:29:02 UTC (rev 764) +++ pure/trunk/INSTALL 2008-09-15 06:48:25 UTC (rev 765) @@ -76,7 +76,7 @@ section. STEP 5. Configure, build and install Pure as follows (x.y denotes the current -Pure version number, 0.6 at the time of this writing): +Pure version number, 0.7 at the time of this writing): $ cd pure-x.y $ ./configure @@ -114,10 +114,10 @@ Run Pure interactively as: $ pure -Pure 0.6 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef +Pure 0.7 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef This program is free software distributed under the GNU Public License (GPL V3 or later). Please see the COPYING file for details. -Loaded prelude from /usr/local/lib/pure-0.6/prelude.pure. +Loaded prelude from /usr/local/lib/pure-0.7/prelude.pure. Check that it works: Modified: pure/trunk/README =================================================================== --- pure/trunk/README 2008-09-15 06:29:02 UTC (rev 764) +++ pure/trunk/README 2008-09-15 06:48:25 UTC (rev 765) @@ -45,10 +45,10 @@ can also just type EOF a.k.a. Ctrl-D at the beginning of the interpreter's command line). For instance: -Pure 0.6 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef +Pure 0.7 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef This program is free software distributed under the GNU Public License (GPL V3 or later). Please see the COPYING file for details. -Loaded prelude from /usr/local/lib/pure-0.6/prelude.pure. +Loaded prelude from /usr/local/lib/pure-0.7/prelude.pure. > fact n = if n>0 then n*fact (n-1) else 1; > map fact (1..10); Modified: pure/trunk/configure =================================================================== --- pure/trunk/configure 2008-09-15 06:29:02 UTC (rev 764) +++ pure/trunk/configure 2008-09-15 06:48:25 UTC (rev 765) @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for pure 0.6. +# Generated by GNU Autoconf 2.61 for pure 0.7. # # 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.6' -PACKAGE_STRING='pure 0.6' +PACKAGE_VERSION='0.7' +PACKAGE_STRING='pure 0.7' 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.6 to adapt to many kinds of systems. +\`configure' configures pure 0.7 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.6:";; + short | recursive ) echo "Configuration of pure 0.7:";; 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.6 +pure configure 0.7 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.6, which was +It was created by pure $as_me 0.7, 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.6, which was +This file was extended by pure $as_me 0.7, 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.6 +pure config.status 0.7 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-15 06:29:02 UTC (rev 764) +++ pure/trunk/configure.ac 2008-09-15 06:48:25 UTC (rev 765) @@ -2,7 +2,7 @@ dnl To regenerate the configury after changes: dnl autoconf -I config && autoheader -I config -AC_INIT(pure, 0.6) +AC_INIT(pure, 0.7) 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. |