[pure-lang-svn] SF.net SVN: pure-lang: [47] pure/trunk
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-05-04 09:22:37
|
Revision: 47 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=47&view=rev Author: agraef Date: 2008-05-04 02:22:44 -0700 (Sun, 04 May 2008) Log Message: ----------- Release 0.2. Modified Paths: -------------- pure/trunk/ChangeLog pure/trunk/Makefile pure/trunk/NEWS Modified: pure/trunk/ChangeLog =================================================================== --- pure/trunk/ChangeLog 2008-05-04 08:55:48 UTC (rev 46) +++ pure/trunk/ChangeLog 2008-05-04 09:22:44 UTC (rev 47) @@ -1,5 +1,7 @@ 2008-05-04 Albert Graef <Dr....@t-...> + * 0.2 release. + * lexer.ll, printer.cc: Add an explicit notation for big integers. Any integer immediately followed by the uppercase letter "G" (as in "biG" or "GMP") will now always be interpreted as a @@ -84,6 +86,10 @@ * lexer.ll, parser.yy: Fixes for compatibility with newer flex and bison versions. Reported by Eddie Rucker. +2008-04-29 Albert Graef <Dr....@t-...> + + * 0.1 release. + 2008-04-28 Albert Graef <Dr....@t-...> * examples/symbolic.pure: Add symbolic evaluation example. This is Modified: pure/trunk/Makefile =================================================================== --- pure/trunk/Makefile 2008-05-04 08:55:48 UTC (rev 46) +++ pure/trunk/Makefile 2008-05-04 09:22:44 UTC (rev 47) @@ -9,7 +9,7 @@ # installation time, you can also specify a DESTDIR path if you want to # install into a staging directory, e.g.: 'make install DESTDIR=$PWD/BUILD'. -version = 0.1 +version = 0.2 dist = pure-$(version) prefix = /usr/local @@ -85,7 +85,7 @@ $(examples) $(lib) $(tests) $(distlogs) .PHONY: all html dvi ps pdf clean realclean depend install uninstall dist \ -logs check +distcheck cleanlogs logs check # compilation @@ -162,6 +162,11 @@ tar cfzh $(dist).tar.gz $(dist) rm -rf $(dist) +distcheck: dist + tar xfz $(dist).tar.gz + cd $(dist) && make && make check && make install DESTDIR=./BUILD + rm -rf $(dist) + # test logs, make check level=7 Modified: pure/trunk/NEWS =================================================================== --- pure/trunk/NEWS 2008-05-04 08:55:48 UTC (rev 46) +++ pure/trunk/NEWS 2008-05-04 09:22:44 UTC (rev 47) @@ -1,4 +1,21 @@ +** Pure 0.2 2008-05-04 + +On the heels of Pure 0.1 comes the first bugfix release which addresses a +couple of bugs, misfeatures and Mac OSX compatibility issues, please refer to +the ChangeLog for details. I also added a more detailed INSTALL guide (thanks +are due to Eddie Rucker who wrote most of the new material in this guide) and +updated the manpage with a few minor corrections and some remarks about issues +raised on the Pure mailing list. + +Please note that there are still some issues with Pure on 64 bit systems (as +well as on Ubuntu running on PowerPC) which are still on my TODO list, these +will hopefully be fixed in the next release. + +Thanks to all who sent in bug reports and patches, in particular: Chris +Double, Tim Haynes, Eddie Rucker, Ryan Schmidt and Libor Spacek. (I hope I +didn't forget anyone.) + ** Pure 0.1 2008-04-29 The much-awaited initial release. ;-) The interpreter is already fully This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |