Skip to content

Commit

Permalink
Prepare the NEWS entry and bump the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
zecke committed Feb 8, 2013
1 parent 6968337 commit 15188da
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
32 changes: 32 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
List of user-visible changes in GNU Smalltalk

NEWS FROM 3.2.4 to 3.2.5

o Add Delay>>#value:onTimeoutDo: as an easy way to timeout an operation.

o Improve Delay and millisecondClock behavior across image save and restore.

o DateTime>>#today will return midnight of the current timezone.

o Time resolution is now based on nanoseconds.

o Socket fixes including reporting of EndOfStream on broken pipes and
connection resets.

o Fix the FileDescriptor finalization code to close open descriptors.

o The system file descriptor of FileDescriptor is set to nil on close.

o The asynchronous event notification has been rewritten to use a lockless
stack.

o DBD-Postgres gained support to bind parameters on queries and various
fixes to allow to resume images that use Postgres.

o Images created with gst-remote can now be resumed.

o Add #system:withArguments: to avoid using #system: with #% to add
arguments.

o Growing the heap is working again.

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

NEWS FROM 3.2.3 TO 3.2.4

o Autoload is extended to allow plugging in arbitrary loaders.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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.4, help-smalltalk@gnu.org, smalltalk,
AC_INIT([GNU Smalltalk], 3.2.5, help-smalltalk@gnu.org, smalltalk,
[http://smalltalk.gnu.org/])
MAINTAINER="bonzini@gnu.org"

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.4])
m4_define([AT_PACKAGE_STRING], [GNU Smalltalk 3.2.4])
m4_define([AT_PACKAGE_VERSION], [3.2.5])
m4_define([AT_PACKAGE_STRING], [GNU Smalltalk 3.2.5])
m4_define([AT_PACKAGE_BUGREPORT], [help-smalltalk@gnu.org])

0 comments on commit 15188da

Please sign in to comment.