Version 1.1.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12034 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2002-01-07 21:59:28 +00:00
parent 5331493943
commit cb8c962f80
7 changed files with 65 additions and 11 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Base Library, version 1.0.2, is now available.
The GNUstep Base Library, version 1.1.0, is now available.
What is the GNUstep Base Library?
=================================
@ -19,10 +19,32 @@ portion of the OpenStep standard (the Foundation library).
There is more information available at the GNUstep homepage at
`http://www.gnustep.org'.
Noteworthy changes in version `1.1.0'
=====================================
* Removed use of distributed lock to sync defaults file.
* Compiles on Darwin (but does not work yet).
* New tool autogsdoc for inline Objective-C documentation.
* Some NSBundle convienience methods for associating resources with
libraries and tools (like a lightweight framework).
* URL classes improved and more robust.
* SSL classes compiled as a separate bundle due to license problems.
* Better operation in MinGW environment.
* New localization files.
* XML property lists
Where can you get it? How can you compile it?
==============================================
The gnustep-base-1.0.2.tar.gz distribution file has been placed on
The gnustep-base-1.1.0.tar.gz distribution file has been placed on
`ftp.gnustep.org' in `pub/gnustep/core'.
The library requires gcc 2.8.0 or higher. See the `GNUstep-HOWTO'

View file

@ -1,5 +1,8 @@
2002-01-07 Adam Fedor <fedor@gnu.org>
* Version: 1.1.0
* Documentation/news.texi: Update
* Source/NSObject.m (GSGetValue): Add case for void return
(suggestion from ml@sbuilders.com).

View file

@ -34,6 +34,10 @@ For more details, see the @samp{README} file that comes with the
distribution.
@end ignore
@set ANNOUNCE-ONLY
@include news.texi
@clear ANNOUNCE-ONLY
@section Where can you get it? How can you compile it?
@ifset GNUSTEP-BASE-FTP-MACHINE

View file

@ -2,10 +2,12 @@
@include version.texi
@end ifclear
@ifclear ANNOUNCE-ONLY
@chapter News
The currently released version of the library is
@samp{@value{GNUSTEP-BASE-VERSION}}.
@end ifclear
@section Noteworthy changes in version @samp{1.1.0}

13
INSTALL
View file

@ -81,7 +81,7 @@ that implements a Foreign-Function Interface (FFI), such as the ffcall
libraries. Use of ffcall is automatically enabled if the ffcall
libraries are found, unless specifically disabled with
`--disable-ffcall'. If disabled, the code reverts to the builtin
method for stack frame handling, but this rarely works on non ix86
method for stack frame handling, but this rarely works on non-ix86
machines and is not supported.
You need to have the ffcall libraries, which you can get from
@ -95,11 +95,12 @@ OpenSSL
-------
GNUstep base has optional support for using the OpenSSL libraries for
secure URL connections (with the NSURL classes). To enable this option
you need to have the openssl libraries installed and add the option
`--enable-openssl' when running the `configure' script. Note that the
OpenSSL license is not compatible with GPL, so do not use this option
if you want your programs to be GPL compatible.
secure URL connections (with the NSURL classes). This functionality is
compiled as a separate bundle since the OpenSSL license is not
compatible with GPL, and in the hopes that if someone writes an openssl
replacement, it can quickly be used by creating another bundle. The
openssl libraries need to be installed for this to work. To disable
this option add `--disable-openssl' when running the `configure' script.
Compilation
===========

24
NEWS
View file

@ -1,7 +1,29 @@
News
****
The currently released version of the library is `1.0.2'.
The currently released version of the library is `1.1.0'.
Noteworthy changes in version `1.1.0'
=====================================
* Removed use of distributed lock to sync defaults file.
* Compiles on Darwin (but does not work yet).
* New tool autogsdoc for inline Objective-C documentation.
* Some NSBundle convienience methods for associating resources with
libraries and tools (like a lightweight framework).
* URL classes improved and more robust.
* SSL classes compiled as a separate bundle due to license problems.
* Better operation in MinGW environment.
* New localization files.
* XML property lists
Noteworthy changes in version `1.0.2'
=====================================

View file

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