mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Version 1.11.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21512 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dcb3070d9c
commit
e32b9ca9c1
7 changed files with 96 additions and 18 deletions
30
ANNOUNCE
30
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
Announcement
|
||||
************
|
||||
|
||||
The GNUstep Base Library, version 1.10.3, is now available.
|
||||
The GNUstep Base Library, version 1.11.0, is now available.
|
||||
|
||||
What is the GNUstep Base Library?
|
||||
=================================
|
||||
|
@ -18,18 +18,38 @@ 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.10.3'
|
||||
Noteworthy changes in version `1.11.0'
|
||||
======================================
|
||||
|
||||
This version includes a few minor bug fixes.
|
||||
This release is binary incompatible with previous releases. The
|
||||
interface version of the library has changed so that apps, tools and
|
||||
libraries that use the base library need to be recompiled to use this
|
||||
new version.
|
||||
|
||||
* Window's path handling has changed to use native paths throughout.
|
||||
|
||||
* Startup/configuration of the libraries no longer requires
|
||||
environement variables.
|
||||
|
||||
* Character sets are included in the library rather than being read
|
||||
from data files.
|
||||
|
||||
* NSRunLoop and related classes use natvie win32 event handling on
|
||||
Windows machines.
|
||||
|
||||
Where can you get it? How can you compile it?
|
||||
==============================================
|
||||
|
||||
The gnustep-base-1.10.3.tar.gz distribution file has been placed on
|
||||
`ftp.gnustep.org' in `pub/gnustep/core'.
|
||||
The gnustep-base-1.11.0.tar.gz distribution file has been placed at
|
||||
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
||||
|
||||
Please log bug reports on the GNUstep project page
|
||||
<http://savannah.gnu.org/bugs/?group=gnustep> or send bug reports to
|
||||
<bug-gnustep@gnu.org>.
|
||||
|
||||
Copyright (C) 2005 Free Software Foundation
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved.
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2005-07-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version 1.11.0
|
||||
|
||||
2005-07-18 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSUnarchiver.m:
|
||||
|
|
|
@ -945,9 +945,6 @@ Many bug fixes.
|
|||
|
||||
Also see the @samp{ChangeLog} file for more detail.
|
||||
|
||||
@end ifclear
|
||||
@c end ifclear ANNOUNCE_ONLY
|
||||
|
||||
@ifinfo
|
||||
Copyright @copyright{} 2005 Free Software Foundation
|
||||
|
||||
|
@ -956,3 +953,6 @@ are permitted in any medium without royalty provided the copyright
|
|||
notice and this notice are preserved.
|
||||
@end ifinfo
|
||||
|
||||
@end ifclear
|
||||
@c end ifclear ANNOUNCE_ONLY
|
||||
|
||||
|
|
18
INSTALL
18
INSTALL
|
@ -7,6 +7,18 @@ install the entire GNUstep package (including this library).
|
|||
GNUstep-HOWTO is located in the gnustep-make package or at
|
||||
<http://www.gnustep.org>
|
||||
|
||||
Other external libraries that you may need to install include:
|
||||
|
||||
* ffcall or ffi (HIGHLY RECOMMENDED)
|
||||
|
||||
* libxml2 (RECOMMENDED)
|
||||
|
||||
* libxslt (OPTIONAL)
|
||||
|
||||
* openssl (OPTIONAL)
|
||||
|
||||
* iconv (OPTIONAL, not needed if you have glibc)
|
||||
|
||||
If you are installing the GNUstep libraries individually, make sure
|
||||
you have installed the GNUstep Makefile package (gnustep-make) already,
|
||||
and you have sourced the makefile script:
|
||||
|
@ -144,3 +156,9 @@ the gstep-make package for more information on these options.
|
|||
If you can't install gstep-base as root, be sure to edit the
|
||||
`Tools/gdomap.h' file and uncomment the last line.
|
||||
|
||||
Copyright (C) 2005 Free Software Foundation
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved.
|
||||
|
||||
|
|
29
NEWS
29
NEWS
|
@ -1,10 +1,29 @@
|
|||
News
|
||||
****
|
||||
|
||||
The currently released version of the library is `1.10.3'.
|
||||
The currently released version of the library is `1.11.0'.
|
||||
|
||||
See the <ReleaseNotes.html> document for more information.
|
||||
|
||||
Noteworthy changes in version `1.11.0'
|
||||
======================================
|
||||
|
||||
This release is binary incompatible with previous releases. The
|
||||
interface version of the library has changed so that apps, tools and
|
||||
libraries that use the base library need to be recompiled to use this
|
||||
new version.
|
||||
|
||||
* Window's path handling has changed to use native paths throughout.
|
||||
|
||||
* Startup/configuration of the libraries no longer requires
|
||||
environement variables.
|
||||
|
||||
* Character sets are included in the library rather than being read
|
||||
from data files.
|
||||
|
||||
* NSRunLoop and related classes use natvie win32 event handling on
|
||||
Windows machines.
|
||||
|
||||
Noteworthy changes in version `1.10.3'
|
||||
======================================
|
||||
|
||||
|
@ -47,7 +66,7 @@ tools and libraries the use the base library need to be recompiled to
|
|||
use it.
|
||||
|
||||
* A large majority of the library classes have been documented
|
||||
thanks to the efforts of Andrew Ruder
|
||||
thanks to the efforts of Adrian Robert
|
||||
|
||||
* URL classes support persistant connections
|
||||
|
||||
|
@ -934,3 +953,9 @@ Noteworthy changes in version `931026'
|
|||
|
||||
Also see the `ChangeLog' file for more detail.
|
||||
|
||||
Copyright (C) 2005 Free Software Foundation
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved.
|
||||
|
||||
|
|
21
README
21
README
|
@ -21,16 +21,21 @@ instructions for installing the library.
|
|||
License
|
||||
=======
|
||||
|
||||
The GNUstep libraries are covered under the GNU Lesser Public License.
|
||||
This means you can use these libraries in any program (even non-free
|
||||
programs). If you distribute the libraries along with your program, you
|
||||
must make the improvements you have made to the libraries freely
|
||||
available. You should read the COPYING.LIB file for more information.
|
||||
The GNUstep libraries and library resources are covered under the GNU
|
||||
Lesser Public License. This means you can use these libraries in any
|
||||
program (even non-free programs). If you distribute the libraries along
|
||||
with your program, you must make the improvements you have made to the
|
||||
libraries freely available. You should read the COPYING.LIB file for
|
||||
more information. All files in the `Source', `Headers'
|
||||
`NSCharacterSets', `NSTimeZones', `Resources', and `SSL' directories
|
||||
and subdirectories under this are covered under the GLPL.
|
||||
|
||||
GNUstep tools, test programs, and other files are covered under the
|
||||
GNU Public License. This means if you make changes to these programs,
|
||||
you cannot charge a fee, other than distribution fees, for others to
|
||||
use the program. You should read the COPYING file for more information.
|
||||
All files in the `Documentation', `Examples', `Testing', `Tools',
|
||||
`config', and `macosx' directories are covered under the GPL.
|
||||
|
||||
With GNUstep-Base, we strongly recommend the use of the ffcall
|
||||
libraries, which provides stack frame handling for NSInvocation and
|
||||
|
@ -51,3 +56,9 @@ How can you help?
|
|||
|
||||
Happy hacking!
|
||||
|
||||
Copyright (C) 2005 Free Software Foundation
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved.
|
||||
|
||||
|
|
6
Version
6
Version
|
@ -6,10 +6,10 @@ GCC_VERSION=2.8.0
|
|||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
MINOR_VERSION=10
|
||||
SUBMINOR_VERSION=1
|
||||
MINOR_VERSION=11
|
||||
SUBMINOR_VERSION=0
|
||||
# numeric value should match above
|
||||
VERSION_NUMBER=110.1
|
||||
VERSION_NUMBER=111.0
|
||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
VERSION=${GNUSTEP_BASE_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue