Version 1.7.1

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16965 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2003-06-20 14:50:50 +00:00
parent fa45d45e0f
commit ef23eeee75
6 changed files with 29 additions and 6 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Base Library, version 1.7.0, is now available.
The GNUstep Base Library, version 1.7.1, is now available.
What is the GNUstep Base Library?
=================================
@ -23,6 +23,11 @@ portion of the OpenStep standard (the Foundation library).
number, y, in x.y.z) are unstable releases (like 1.5.2), which even
minor release numbers (1.4.1) are stable releases.
Noteworthy changes in version `1.7.1'
=====================================
Bug fixes.
Noteworthy changes in version `1.7.0'
=====================================
@ -43,7 +48,7 @@ changes:
Where can you get it? How can you compile it?
==============================================
The gnustep-base-1.7.0.tar.gz distribution file has been placed on
The gnustep-base-1.7.1.tar.gz distribution file has been placed on
`ftp.gnustep.org' in `pub/gnustep/core'.
Please log bug reports on the GNUstep project page

View file

@ -1,3 +1,10 @@
2003-06-20 Adam Fedor <fedor@gnu.org>
* Version 1.7.1
* Source/DocMakefile (after-all): Check if Base exists before
removing it.
2003-06-19 Adam Fedor <fedor@gnu.org>
* GNUmakefile (SUBPROJECTS): Revert last change.

View file

@ -9,6 +9,10 @@ The currently released version of the library is
@samp{@value{GNUSTEP-BASE-VERSION}}.
@end ifclear
@section Noteworthy changes in version @samp{1.7.1}
Bug fixes.
@section Noteworthy changes in version @samp{1.7.0}
See gnustep-make for comments on the filesystem change. Some components

7
NEWS
View file

@ -1,7 +1,12 @@
News
****
The currently released version of the library is `1.7.0'.
The currently released version of the library is `1.7.1'.
Noteworthy changes in version `1.7.1'
=====================================
Bug fixes.
Noteworthy changes in version `1.7.0'
=====================================

View file

@ -208,6 +208,8 @@ before-all:: ../Documentation/Base \
after-all::
$(RM) Base.gsdoc
$(RM) BaseAdditions.gsdoc
rmdir Base
rmdir BaseAdditions
if [ -d Base ]; then \
rmdir Base; \
rmdir BaseAdditions; \
fi

View file

@ -7,7 +7,7 @@ GCC_VERSION=2.8.0
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=7
SUBMINOR_VERSION=0
SUBMINOR_VERSION=1
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}