diff --git a/ChangeLog b/ChangeLog index 237bbe47..281844e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +2019-12-05 rocky + + * .travis.yml: Travis CI artifact upload try 4 + +2019-12-05 rocky + + * .travis.yml: Travis CI artifact upload try 3 + +2019-12-05 rocky + + * .travis.yml, command/show_sub/prompt.sh: Add missing show prompt + subcmd... and Travis CI 2nd attempt to get artifacts + +2019-12-05 rocky + + * .travis.yml, command/show.sh: add "dir" to show list and ... attempt to get Travis to upload artifacts + +2019-12-05 rocky + + * command/show.sh, lib/term-highlight.py, + test/data/setshow-5.4.1.right: Get all Pygments style a user has + installed not just builtins ... Patch is due to John Purnell (in bashdb). Also, "help show" now includes "prompt". + +2019-11-28 rocky + + * ChangeLog, test/unit/test-fns.sh.in: Another Ddg -> Dbg typo + +2019-11-28 R. Bernstein + + * : Merge pull request #22 from MenkeTechnologies/master ddg to dbg typo fix + 2019-11-17 rocky * ChangeLog, docs/commands/set/trace-commands.rst, diff --git a/NEWS.md b/NEWS.md index 902f0e7b..c93fc84c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +Version 1.1.2 2019-12-10 gecko gecko +------------------------------------ + +Very minor improvements + +- Add "show prompt" to "show" list +- add "show dir" to "show" list +- Show *all* Pygments sytles a has installed, not just builtins. (John Purnell in bashdb) +- Fix typo which prevented syntax highlighting option from working (MenkeTechnologies) + Version 1.1.1 2019-11-17 JNC ---------------------------- diff --git a/admin/how-to-make-a-release.md b/admin/how-to-make-a-release.md index 012ae072..cd4c9565 100644 --- a/admin/how-to-make-a-release.md +++ b/admin/how-to-make-a-release.md @@ -8,14 +8,14 @@ - Edit from `configure.ac`'s release name. If we have this in `configure.ac`: ``` - AC_INIT([zshdb],[1.1.1],[rocky@gnu.org]) + AC_INIT([zshdb],[1.1.3],[rocky@gnu.org]) ^^^^^^ ``` then: ```console - $ export ZSHDB_VERSION='1.1.1' + $ export ZSHDB_VERSION='1.1.3' $ ./autogen.sh && make && make check ``` diff --git a/configure.ac b/configure.ac index 28ef8915..3f6002ce 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Configure script for Shell debugger define(DEBUGGER, zshdb) define(POSIXSHELL, zsh) -AC_INIT([zshdb],[1.1.1],[https://github.com/rocky/zshdb/issues]) +AC_INIT([zshdb],[1.1.2],[https://github.com/rocky/zshdb/issues]) AM_MAINTAINER_MODE AM_INIT_AUTOMAKE([foreign])