mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
717533effd
commit
fb747bd9ca
5 changed files with 15 additions and 6 deletions
|
@ -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>
|
||||
|
||||
* Source/NSArchiver.m:
|
||||
|
|
|
@ -267,7 +267,7 @@ static Class NSMutableDataMallocClass;
|
|||
* data and using the eighth (top) bit to indicate that there are more
|
||||
* bytes in the sequence.
|
||||
*/
|
||||
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1))
|
||||
if ([self systemVersion] > 12401)
|
||||
{
|
||||
NSUInteger tmp = count;
|
||||
|
||||
|
|
|
@ -440,7 +440,7 @@ static IMP _xRefImp; /* Serialize a crossref. */
|
|||
NSUInteger count;
|
||||
|
||||
(*_dTagImp)(_src, dTagSel, &info, 0, &_cursor);
|
||||
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1))
|
||||
if (_version > 12401)
|
||||
{
|
||||
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
|
||||
* bytes in the sequence.
|
||||
*/
|
||||
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1))
|
||||
if ([self systemVersion] > 12401)
|
||||
{
|
||||
NSUInteger tmp = count;
|
||||
|
||||
|
|
|
@ -536,7 +536,7 @@ static Class NSDataMallocClass;
|
|||
NSUInteger count;
|
||||
|
||||
(*tagImp)(src, tagSel, &info, 0, &cursor);
|
||||
if ([self systemVersion] >= ((((1 * 100) + 24) * 100) + 1))
|
||||
if (version > 12401)
|
||||
{
|
||||
uint8_t c;
|
||||
|
||||
|
|
4
Version
4
Version
|
@ -7,9 +7,9 @@ GCC_VERSION=4.0.0
|
|||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
MINOR_VERSION=24
|
||||
SUBMINOR_VERSION=1
|
||||
SUBMINOR_VERSION=2
|
||||
# numeric value should match above
|
||||
VERSION_NUMBER=124.1
|
||||
VERSION_NUMBER=124.2
|
||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
VERSION=${GNUSTEP_BASE_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue