First step towards 0.6.5.
This commit is contained in:
parent
9d206dae0c
commit
e60e77997f
31
RELEASE
31
RELEASE
|
@ -1,12 +1,13 @@
|
||||||
Scsh 0.6.4 Release notes -*- outline -*-
|
Scsh 0.6.5 Release notes -*- outline -*-
|
||||||
|
|
||||||
We are pleased to release scsh version 0.6.4. The new version is
|
We are pleased to release scsh version 0.6.5. The new version is
|
||||||
mainly a bug-fix release, the only new features are command-line
|
mainly a bug-fix release. The new features mainly concern the
|
||||||
switches for loading exec scripts and support for some more SRFIs.
|
installation and packaging process. In addition, scsh now runs on GNU
|
||||||
|
Hurd.
|
||||||
|
|
||||||
The text below gives a general description of scsh, instructions for obtaining
|
The text below gives a general description of scsh, instructions for obtaining
|
||||||
it, pointers to discussion forums, and a description of the new features in
|
it, pointers to discussion forums, and a description of the new features in
|
||||||
release 0.6.3. (Emacs should display this document is in outline mode. Say
|
release 0.6.4. (Emacs should display this document is in outline mode. Say
|
||||||
c-h m for instructions on how to move through it by sections (e.g., c-c c-n,
|
c-h m for instructions on how to move through it by sections (e.g., c-c c-n,
|
||||||
c-c c-p).)
|
c-c c-p).)
|
||||||
|
|
||||||
|
@ -20,9 +21,12 @@ Obtaining and installing scsh
|
||||||
Getting in touch
|
Getting in touch
|
||||||
The World-Wide What?
|
The World-Wide What?
|
||||||
New in this release
|
New in this release
|
||||||
Switches to load exec scripts
|
New platform: GNU Hurd
|
||||||
|
./configure option to set default scsh library directories
|
||||||
|
Support for DESTDIR for easier packaging
|
||||||
Bug fixes
|
Bug fixes
|
||||||
API changes
|
API changes
|
||||||
|
New in 0.6.4
|
||||||
New in 0.6.3
|
New in 0.6.3
|
||||||
New in 0.6.2
|
New in 0.6.2
|
||||||
New in 0.6.1
|
New in 0.6.1
|
||||||
|
@ -108,6 +112,7 @@ Unix platforms. We currently have scsh implementations for:
|
||||||
Ultrix
|
Ultrix
|
||||||
Win32
|
Win32
|
||||||
Darwin/Mac OS X
|
Darwin/Mac OS X
|
||||||
|
GNU Hurd
|
||||||
|
|
||||||
Scsh code should run without change across these systems.
|
Scsh code should run without change across these systems.
|
||||||
Porting to new platforms is usually not difficult.
|
Porting to new platforms is usually not difficult.
|
||||||
|
@ -167,6 +172,20 @@ We manage the project using SourceForge:
|
||||||
* New in this release
|
* New in this release
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
** New platform: GNU Hurd
|
||||||
|
|
||||||
|
** ./configure option to set default scsh library directories
|
||||||
|
|
||||||
|
** Support for DESTDIR for easier packaging
|
||||||
|
|
||||||
|
** Bug fixes
|
||||||
|
|
||||||
|
** API changes
|
||||||
|
|
||||||
|
|
||||||
|
* New in 0.6.4
|
||||||
|
==============
|
||||||
|
|
||||||
** Switches to load exec scripts
|
** Switches to load exec scripts
|
||||||
The new switch -le loads a file into the exec package, the new
|
The new switch -le loads a file into the exec package, the new
|
||||||
switch -de loads the "-s" script into the exec package.
|
switch -de loads the "-s" script into the exec package.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
6.4
|
6.5
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define scsh-major-version 0)
|
(define scsh-major-version 0)
|
||||||
(define scsh-minor-version 6)
|
(define scsh-minor-version 6)
|
||||||
|
|
||||||
(define scsh-version-string "0.6.4")
|
(define scsh-version-string "0.6.5")
|
||||||
(define scsh-release-name "Olin Shivers")
|
(define scsh-release-name "RC 1")
|
Loading…
Reference in New Issue