Skip to content

Commit

Permalink
bump version, add NEWS contents
Browse files Browse the repository at this point in the history
  • Loading branch information
bonzini committed Mar 21, 2011
1 parent b4230bd commit e04c57c
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 4 deletions.
52 changes: 52 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
List of user-visible changes in GNU Smalltalk

NEWS FROM 3.2.3 TO 3.2.4

o Autoload is extended to allow plugging in arbitrary loaders.

o Array items in a CStruct didn't work, this is fixed now.

o DLD could have problems when the same library was requested multiple
times.

o Errors in the bind() system call were not detected correctly; this
has been fixed.

o Fixes for platforms with 113-bit long doubles.

o Fixes to Delay in the presence of delays with the exact same expiration.

o Fixes to the HTTP package, including correct flushing of POST requests
and doesNotUnderstand exceptions when the host did not exist.

o GLUT bindings now build correctly under Windows.

o Many smalltalk-mode improvements.

o New methods: TextCollector>>#critical:,

o nil can be passed to a C function accepting a #cObjectPtr (i.e.
void **) argument.

o SocketAddress>>#allByName: returns nil now, instead of an empty array,
when getaddrinfo succeeds but returns no address for the requested
address class.

o SocketAddress>>#byName: returns addresses for the default address class
when the receiver is SocketAddress (and not a subclass).

o Support for older versions of GnuTLS.

o Swazoo's static content serving was broken and has been fixed.

o The GST_PACKAGE macro supports having multiple .la files in its last
argument. gst-package's --prepare option was broken and has been fixed.

o The NetClients exception ProtocolError now includes the erroneous
response. Similarly, the package includes ProtocolNotification which
is used, for example, for HTTP redirects.

o Updated the Squeak/Pharo fileout parser.

o Updated VisualGST.

-----------------------------------------------------------------------------

NEWS FROM 3.2.2 TO 3.2.3

o Class attributes can have more than 1 keyword.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ dnl Process this file with autoconf to produce a configure script.

dnl 2.63 needed by testsuite, actually
AC_PREREQ(2.63)
AC_INIT([GNU Smalltalk], 3.2.3, help-smalltalk@gnu.org, smalltalk,
AC_INIT([GNU Smalltalk], 3.2.4, help-smalltalk@gnu.org, smalltalk,
[http://smalltalk.gnu.org/])
MAINTAINER="bonzini@gnu.org"

dnl CURRENT:REVISION:AGE means this is the REVISION-th version of
dnl the CURRENT-th interface; all the interface from CURRENT-AGE
dnl to CURRENT are supported.
GST_REVISION(8:2:1)
GST_REVISION(8:3:1)
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([build-aux])
AC_CONFIG_SRCDIR([main.c])
Expand Down
4 changes: 2 additions & 2 deletions tests/package.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Signature of the current package.
m4_define([AT_PACKAGE_NAME], [GNU Smalltalk])
m4_define([AT_PACKAGE_TARNAME], [smalltalk])
m4_define([AT_PACKAGE_VERSION], [3.2.3])
m4_define([AT_PACKAGE_STRING], [GNU Smalltalk 3.2.3])
m4_define([AT_PACKAGE_VERSION], [3.2.4])
m4_define([AT_PACKAGE_STRING], [GNU Smalltalk 3.2.4])
m4_define([AT_PACKAGE_BUGREPORT], [help-smalltalk@gnu.org])

0 comments on commit e04c57c

Please sign in to comment.