bump version

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34835 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-02-27 21:13:16 +00:00
parent 04cdb44613
commit 38cc835fa7
5 changed files with 15 additions and 6 deletions

View file

@ -1,3 +1,12 @@
2012-02-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSArchiver.m:
* Source/NSUnarchiver.m:
* Source/NSPortCoder.m:
* Version: Update to 12402
Bump subminor version as suggested by eric Wasylishen, in case there
are any archives which would be caugt by the new version number.
2012-02-28 Richard Frith-Macdonald <rfm@gnu.org> 2012-02-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSArchiver.m: * Source/NSArchiver.m:

View file

@ -267,7 +267,7 @@ static Class NSMutableDataMallocClass;
* data and using the eighth (top) bit to indicate that there are more * data and using the eighth (top) bit to indicate that there are more
* bytes in the sequence. * bytes in the sequence.
*/ */
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1)) if ([self systemVersion] > 12401)
{ {
NSUInteger tmp = count; NSUInteger tmp = count;

View file

@ -440,7 +440,7 @@ static IMP _xRefImp; /* Serialize a crossref. */
NSUInteger count; NSUInteger count;
(*_dTagImp)(_src, dTagSel, &info, 0, &_cursor); (*_dTagImp)(_src, dTagSel, &info, 0, &_cursor);
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1)) if (_version > 12401)
{ {
uint8_t c; uint8_t c;
@ -1147,7 +1147,7 @@ static IMP _xRefImp; /* Serialize a crossref. */
* data and using the eighth (top) bit to indicate that there are more * data and using the eighth (top) bit to indicate that there are more
* bytes in the sequence. * bytes in the sequence.
*/ */
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1)) if ([self systemVersion] > 12401)
{ {
NSUInteger tmp = count; NSUInteger tmp = count;

View file

@ -536,7 +536,7 @@ static Class NSDataMallocClass;
NSUInteger count; NSUInteger count;
(*tagImp)(src, tagSel, &info, 0, &cursor); (*tagImp)(src, tagSel, &info, 0, &cursor);
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1)) if (version > 12401)
{ {
uint8_t c; uint8_t c;

View file

@ -7,9 +7,9 @@ GCC_VERSION=4.0.0
# The version number of this release. # The version number of this release.
MAJOR_VERSION=1 MAJOR_VERSION=1
MINOR_VERSION=24 MINOR_VERSION=24
SUBMINOR_VERSION=1 SUBMINOR_VERSION=2
# numeric value should match above # numeric value should match above
VERSION_NUMBER=124.1 VERSION_NUMBER=124.2
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION} GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION} VERSION=${GNUSTEP_BASE_VERSION}