diff --git a/NEWS b/NEWS index 6899dc038..043ffc834 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,12 @@ For full details, see the git log at: https://github.com/ksh93/ksh Any uppercase BUG_* names are modernish shell bug IDs. +2020-09-04: + +- Fixed a bug that caused a syntax error to be thrown if the special parameter + expansions ${!} and ${$} (including braces) were used within a here-document. + Bug reported by @Saikiran-m on GitHub. + 2020-09-01: - The bash-style '&>file' redirection shorthand (for '>file 2>&1') is now diff --git a/src/cmd/ksh93/include/version.h b/src/cmd/ksh93/include/version.h index 8d37c84b0..1f72bd3c0 100644 --- a/src/cmd/ksh93/include/version.h +++ b/src/cmd/ksh93/include/version.h @@ -17,4 +17,4 @@ * David Korn * * * ***********************************************************************/ -#define SH_RELEASE "93u+m 2020-09-01" +#define SH_RELEASE "93u+m 2020-09-04"