mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 03:32:24 +00:00
parent
a410bc480f
commit
cea04c4a6f
3 changed files with 21 additions and 5 deletions
7
NEWS
7
NEWS
|
@ -3,6 +3,13 @@ For full details, see the git log at: https://github.com/ksh93/ksh
|
|||
|
||||
Any uppercase BUG_* names are modernish shell bug IDs.
|
||||
|
||||
2021-02-04:
|
||||
|
||||
- Fixed ksh crashing if an autoloaded function tried to autoload itself.
|
||||
ksh now errors out gracefully with an "autoload loop" error message.
|
||||
|
||||
- Fixed crash on trying a very long nonexistent command.
|
||||
|
||||
2021-02-01:
|
||||
|
||||
- Fixed a bug in 'typeset': the '-s' modifier option for short integer will
|
||||
|
|
17
README.md
17
README.md
|
@ -44,10 +44,19 @@ While that ksh2020 branch is now abandoned and still has many critical bugs,
|
|||
it also had a lot of bugs fixed. More importantly, the AST issue tracker
|
||||
now contains a lot of documentation on how to fix those bugs, which made
|
||||
it possible to backport many of them to the last stable release instead.
|
||||
This ksh 93u+m reboot now incorporates many of these bugfixes, as well as
|
||||
many patches from Red Hat, Solaris, as well as new fixes from the community.
|
||||
Though there are many bugs left to fix, we are confident at this point that
|
||||
93u+m is already the least buggy branch of ksh93 ever released.
|
||||
This ksh 93u+m reboot now incorporates many of these bugfixes,
|
||||
plus patches from
|
||||
[OpenSUSE](https://github.com/ksh93/ksh/wiki/Patch-Upstream-Report:-OpenSUSE),
|
||||
[Red Hat](https://github.com/ksh93/ksh/wiki/Patch-Upstream-Report:-Red-Hat),
|
||||
and
|
||||
[Solaris](https://github.com/ksh93/ksh/wiki/Patch-Upstream-Report:-Solaris),
|
||||
as well as many new fixes from the community
|
||||
([1](https://github.com/ksh93/ksh/pulls?q=is%3Apr+is%3Amerged),
|
||||
[2](https://github.com/ksh93/ksh/issues?q=is%3Aissue+is%3Aclosed+label%3Abug)).
|
||||
Though there are many
|
||||
[bugs left to fix](https://github.com/ksh93/ksh/issues),
|
||||
we are confident at this point that 93u+m is already the least buggy branch
|
||||
of ksh93 ever released.
|
||||
|
||||
## Build
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#define SH_RELEASE_FORK "93u+m" /* only change if you develop a new ksh93 fork */
|
||||
#define SH_RELEASE_SVER "1.0.0-alpha" /* semantic version number: https://semver.org */
|
||||
#define SH_RELEASE_DATE "2021-02-01" /* must be in this format for $((.sh.version)) */
|
||||
#define SH_RELEASE_DATE "2021-02-04" /* must be in this format for $((.sh.version)) */
|
||||
#define SH_RELEASE_CPYR "(c) 2020-2021 Contributors to ksh " SH_RELEASE_FORK
|
||||
|
||||
/* Scripts sometimes field-split ${.sh.version}, so don't change amount of whitespace. */
|
||||
|
|
Loading…
Reference in a new issue