This adds news on our latest features in preparation for 0.98. ChangeLog:
2008-05-11 Andrew John Hughes <[EMAIL PROTECTED]> * NEWS: Mention GMP and CPStringBuilder. -- Andrew :) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
Index: NEWS =================================================================== RCS file: /sources/classpath/classpath/NEWS,v retrieving revision 1.192 diff -u -r1.192 NEWS --- NEWS 22 Feb 2008 04:19:12 -0000 1.192 +++ NEWS 11 May 2008 18:56:37 -0000 @@ -1,5 +1,18 @@ New in release 0.98 +* Native support for BigInteger is now provided using the GMP +library. A new option, --enable/disable-gmp is provided, and +the option is enabled by default if GMP is found. +* Classpath now makes use of a new StringBuilder implementation +internally called CPStringBuilder. In addition to being +unsynchronised, like StringBuilder, this also avoids copying the +array when toString or substring is called. While StringBuffer/Builder +always retain their own array, which is only altered during resizing, +CPStringBuilder gives away its array when the result is generated +by toString()/substring() and starts afresh. The default capacity of +CPStringBuilder can also be configured using the +gnu.classpath.cpstringbuilder.capacity property. + New in release 0.97 (Feb 22, 2007) Build changes: