Updates for 1.19.3

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28586 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-09-01 09:03:28 +00:00
parent 6bbe31c18d
commit cf4727020b
5 changed files with 35 additions and 7 deletions

View file

@ -1,3 +1,10 @@
2009-09-01 Richard Frith-Macdonald <rfm@gnu.org>
* Version: bump to 1.19.3
* Documentation/news.texi: update
* Documentation/ReleaseNotes.gsdoc: update
Make 1.19.3 release.
2009-09-01 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Foundation/NSCache.h:

View file

@ -28,7 +28,19 @@ notice and this notice are preserved.
changes and other information that might help developers and users
migrate to using a newer version of the library.
</p>
<section>
<section>
<heading>Version 1.19.3</heading>
<p>This is a new unstable snapshot release of the base library
almost identical to 1.19.2 but containing a bugfix for the
introduction of a change in the behavior of NSURL's -path
method to match OSX. We add a new -fullPath method which
returns the actual path of the URL the way the old -path
implementaiton did. This is necessary because the OSX behavior
is to strip any trailing '/' from a path so that it's no longer
possible to reliably build a URL string from its component parts.
</p>
</section>
<section>
<heading>Version 1.19.2</heading>
<p>This is a new unstable snapshot release of the base library.
It may contain minor binary incompatibilities with the previous

View file

@ -11,6 +11,14 @@ The currently released version of the library is
See the @url{ReleaseNotes.html} document for more information.
@end ifclear
@section Noteworthy changes in version @samp{1.19.3}
@itemize @bullet
@item Bugfix to work around OSX behavior of [NSURL-path]
@end itemize
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{1.19.2}
@itemize @bullet
@ -19,8 +27,6 @@ See the @url{ReleaseNotes.html} document for more information.
@item Several minor bugfixes.
@end itemize
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{1.19.1}
@itemize @bullet

View file

@ -97,7 +97,6 @@ static Class NSDate_class;
{
ti = 0.0001;
}
_interval = ti;
if (fd == nil)
{
_date = [[NSDate_class allocWithZone: NSDefaultMallocZone()]
@ -111,7 +110,11 @@ static Class NSDate_class;
_selector = selector;
_info = RETAIN(info);
_repeats = f;
if (_repeats == NO)
if (_repeats == YES)
{
_interval = ti;
}
else
{
_interval = 0.0;
}

View file

@ -7,9 +7,9 @@ GCC_VERSION=2.9.5
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=19
SUBMINOR_VERSION=2
SUBMINOR_VERSION=3
# numeric value should match above
VERSION_NUMBER=119.2
VERSION_NUMBER=119.3
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}