summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--NEWS59
-rw-r--r--README34
-rw-r--r--configure.ac2
4 files changed, 83 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index 31857a822..c47104b32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-05-02 Mark Wielaard <mark@klomp.org>
+ * configure.ac: Set version to 0.09.
+ * README: Move text around. Add section on active projects which use
+ modified versions of the libraries.
+ * NEWS: Add important updates for this release.
+
+2004-05-02 Mark Wielaard <mark@klomp.org>
+
Reverting bad commit from 2004-04-29
* javax/swing/JComponent.java (reshape): Call super.reshape().
* javax/swing/ViewportLayout.java (layoutContainer): Call
diff --git a/NEWS b/NEWS
index 410cd92d6..d37fccd91 100644
--- a/NEWS
+++ b/NEWS
@@ -1,13 +1,62 @@
-New in release 0.09
+New in release 0.09 (2004/02/02)
+
+* Includes updated GNU JAXP version from 2004-02-01.
+* Native C code is now -ansi -pedantic (C89) clean and (almost) -Wall clean.
+* java.io is now implemented by delegating most tasks directly to java.nio.
+* Reworked/Optimized implementations of java.nio.Buffer and subclasses.
+* New javax.print, javax.print.attribute[.standard] and javax.print.event
+ packages and classes.
+* java.text attributed iterators support.
+* New javax.imageio, javax.imageio.event and javax.imageio.spi packages and
+ classes.
+* GNU Classpath can now load service providers that are described via
+ META-INF/services/* resources in extension JARs. This is useful for
+ implementing the various APIs that are supposed to be extensible via
+ custom plugins. For details, please see the documentation of
+ gnu.classpath.ServiceFactory.
+ Application developers are strongly discouraged from calling glibj
+ internal packages. Instead, they might want invoke the newly implemented
+ javax.imageio.spi.ServiceRegistry.lookupProviders, which is a standard
+ method for loading plug-ins.
+* New developers wanting to help the GNU Classpath project might want to
+ review the greatly expanded Hacker Guide included in the doc directory
+ or online at http://www.gnu.org/software/classpath/docs/hacking.html
+ Also the FAQ has been expanded. And when working from CVS you can now use
+ a simple autogen.sh script to get all autotools magic done automagically.
+* New configure option --with-glibj which defines how to install the glibj
+ class files as zip, as flat directory files or both (zip|flat|both)
+ [default=zip]. When working with multiple runtimes some of which might
+ not support bootstrap classes in zip files the --with-glibj=both option
+ is recommended (this does take extra disc space).
+* Two big code drops from the libgcj gui branch updating various java.awt
+ and javax.swing classes.
+* Multiple java.net.InetAdress fixes and java.rmi fixes.
+* ServerSocket.accept() now restarts listening when system call interrupted.
+* Much cleanups to make standard API doc valid XHTML (not completed yet).
+* A scan for unused variables and non-static invocation of static methods
+ turned up a couple of subtle bugs which have now all been fixed.
+* The Mauve testsuite has been cleaned up considerable and lots of issues
+ in the GNU Classpath core class implementation have been fixed.
VM Interface changes:
* java.lang.Class/VMClass interface was changed. The interface now no
-longer requires an instance of VMClass for each Class instance. Instead
-the field vmdata in Class is now of type Object.
+ longer requires an instance of VMClass for each Class instance. Instead
+ the field vmdata in Class is now of type Object.
* GNU Classpath now assumes that JNI calls SetXField can modify final
-fields. This was previously used silently for System.in/out/err and should
-be considered as a feature now.
+ fields. This was previously used silently for System.in/out/err and should
+ be considered as a feature now.
+* A new VMProcess and a sample JNI C implementation are now provided to
+ make Runtime.exec() work out of the box on some systems. This requires
+ a small change to VMRuntime.exec() when a runtime wants to use it as the
+ default java.lang.Process implementation.
+* The implementation of most of java.io through java.nio moved serveral
+ runtime specific I/O methods. Most methods do have a generic default native
+ C JNI implementation in native/jni/java-nio.
+* Runtime support methods for java.io.File have been moved to VMFile which
+ also comes with a default JNI C implementation.
+* To support the new service provider mechanism runtimes must make sure that
+ extension JARs are made accessible via the default context class loader.
New in release 0.08 (2004/12/03)
diff --git a/README b/README
index 191601970..4747efd8e 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-GNU Classpath README - Last updated: Arpil 30, 2004
+GNU Classpath README - Last updated: May 2, 2004
GNU Classpath, Essential Libraries for Java is a project to create
a complete "clean room" implementation of the Java class libraries
@@ -7,6 +7,10 @@ a sub-project called GNU Classpath Tools whose goal is to provide
a number of free replacements for standard Java development tools like
javadoc, javap, javah, and others.
+This is a development snapshot release only and is not ready for general
+purpose use. You need to combine it at least with one of the development
+environments mentioned below.
+
Eventually, these essential libraries for Java will work with as many
free JVMs as possible. Complete development environments known to be
based on GNU Classpath include (recommended for end users):
@@ -14,8 +18,8 @@ based on GNU Classpath include (recommended for end users):
* GCC with GCJ (http://gcc.gnu.org/java/)
* Kaffe (http://www.kaffe.org/)
-Smaller (runtime only) environments based on GNU Classpath includei
-(recommended for GNU Classpath hackers):
+Smaller (runtime only) environments which work with unmodified GNU Classpath
+releases include (recommended for GNU Classpath hackers):
* JamVM (http://www.jamvmv.org/)
* Jikes RVM (http://www.ibm.com/developerworks/oss/jikesrvm/)
@@ -25,18 +29,22 @@ In general the latest releases of the above VMs will work out of the box
with the latest GNU Classpath release (and in most cases directly with the
development sources from CVS).
-See for other GNU Classpath based runtimes, compilers and tools the
-GNU Classpath website: http://www.gnu.org/software/classpath/stories.html
+Some tools come with their own customized version of GNU Classpath.
+Please check if there is a customised version available for the tool you
+use before trying the bare bones GNU Classpath release. We are working with
+the tool creators to keep the differences between the core classes as small
+as possible. Please tell us if you make GNU Classpath work with a new tool.
-This is a development snapshot release only and is not ready for general
-purpose use. You need to combine it at least with one of the development
-environments mentioned above.
+Active projects which use modified versions of the Classpath libraries
+some of which synchronizes with the Classpath CVS head every couple of weeks:
-Most JVMs come with their own customized version of GNU Classpath.
-Please check if there is a customised version available for the JVM you
-use before trying the bare bones GNU Classpath release. We are working with
-the JVM creators to keep the differences between the core classes as small
-as possible. Please tell us if you make GNU Classpath work with a new JVM.
+ * IKVM.NET (http://www.ikvm.net/)
+ * JC (http://jcvm.sourceforge.net/)
+ * JNode (http://jnode.sourceforge.net/)
+ * SableVM (http://www.sablevm.org)
+
+See for a more complete list of GNU Classpath based projects the
+GNU Classpath website: http://www.gnu.org/software/classpath/stories.html
See the file INSTALL for details on installing GNU Classpath.
See the file NEWS for details on what is included in this release.
diff --git a/configure.ac b/configure.ac
index 24bfb1f50..51aa70cb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ dnl -----------------------------------------------------------
dnl define([AC_CACHE_LOAD], )dnl
dnl define([AC_CACHE_SAVE], )dnl
-AC_INIT([GNU Classpath],[0.08+cvs],[classpath@gnu.org],[classpath])
+AC_INIT([GNU Classpath],[0.09],[classpath@gnu.org],[classpath])
AC_CONFIG_SRCDIR(java/lang/System.java)
AC_CANONICAL_TARGET