From 11ffff5ea6fbec77fb48750ca1243011c2b645c3 Mon Sep 17 00:00:00 2001 From: James Haggerty Date: Wed, 2 Mar 2022 22:46:58 +1100 Subject: [PATCH] 0.9.2 --- CHANGES | 8 ++++++++ release.es | 3 +-- version.c | 3 +-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 9752604..5c09485 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,14 @@ CHANGES ======= +0.9.1 to 0.9.2 +-------------- + +- readline now reads your history file (if set) into its history on startup + (set history with history=~/.es_history or similar) +- minor cleanups/fixes (@eadwardus, @mwgamera, @tmmcguire) +- @eadwardus added flatten support to command substitution (e.g. `^{echo hello world}) + 0.9 to 0.9.1 ------------ diff --git a/release.es b/release.es index 6055c88..1de222b 100755 --- a/release.es +++ b/release.es @@ -12,5 +12,4 @@ if {! grep -q $1 version.c} { echo '(yes, this should be automated)' } -tar chzvf ../es-$1.tar.gz --exclude\=.gitignore --exclude\=release.es `{git ls-files} config.guess config.sub configure install-sh - +tar chzvf ../es-$1.tar.gz --exclude\=.circleci --exclude\=.gitignore --exclude\=release.es `{git ls-files} config.guess config.sub config.h.in configure install-sh diff --git a/version.c b/version.c index 8eafc3a..2c16f0e 100644 --- a/version.c +++ b/version.c @@ -1,4 +1,3 @@ -/* version.c -- version number ($Revision: 1.2 $) */ #include "es.h" -static const char id[] = "@(#)es version 0.9.1 15-July-2016"; +static const char id[] = "@(#)es version 0.9.2 2-Mar-2022"; const char * const version = id + (sizeof "@(#)" - 1);