diff --git a/CHANGELOG.md b/CHANGELOG.md index 33954af..217edbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,50 +1,101 @@ -ChangeLog -========= -Notable Changes +Change Log +========== -* v1.14.2 - Bug fixes only +All notable changes to the project are documented in this file. + +[UNRELEASED] +------------ + +### Changes +* Rename NEWS.md --> CHANGELOG.md, with symlinks for `make install` +* Attempt to align with http://keepachangelog.com/ for this file. + + +[1.14.2] - 2014-09-14 +--------------------- + +Bug fixes only. + +### Fixes - Fix `el_no_echo` bug causing secrets to leak when disabling no-echo - Handle `EINTR` in syscalls better -* v1.14.1 - Minor fixes and additions - - Don't print status message on `stderr` in key binding funcions - - Export `el_del_char()` - - Check for and return pending signals when detected - - Allow custom key bindings ... - - Bug fixes ... -* v1.14.0 - Major cleanups and further merges with Debian editline package - - Merge in changes to `debian/` from editline_1.12-6.debian.tar.gz - - Migrate to use libtool - - Cleanups and fixes thanks to the Sparse static code analysis tool - - Make `UNIQUE_HISTORY` configurable - - Make scrollback history (`HIST_SIZE`) configurable - - Configure options for toggling terminal bell and `SIGSTOP` (Ctrl-Z) - - Configure option for using termcap to read/control terminal size - - Merge `el_no_echo` patch from Festival speech-tools - - Rename Signal to `el_intr_pending`, from Festival speech-tools - - Merge support for capitalizing words (`M-c`) from Festival - speech-tools by Alan W Black - - Merge fixes from Heimdal project - - Completely refactor `rl_complete()` and `rl_list_possib()` with - fixes from the Heimdal project. Use `rl_set_complete_func()` and - `rl_set_list_possib_func()`. Default completion callbacks are now - available as a configure option `--enable-default-complete` - - Memory leak fixes - - Fallback backspace handling, in case `tgetstr("le")` fails - - Actually fix 8-bit handling by reverting old Debian patch - - Merge patch to improve compatibility with GNU readline, thanks to - Steve Tell from way back in 1997 and 1998 +[1.14.1] - 2014-09-14 +--------------------- -* v1.13.0 - Adaptations to Debian editline package - - Major version number bump, adapt to Jum Studt's v1.12 - - Import `debian/` directory and adapt it to configure et al. - - Change library name to libeditline to distinguish it from BSD libedit +Minor fixes and additions. -* v0.3.0 - - Support for ANSI arrow keys using `--enable-arrow-keys` +### Changes +* Don't print status message on `stderr` in key binding funcions +* Export `el_del_char()` +* Check for and return pending signals when detected +* Allow custom key bindings ... -* v0.2.x - - Patches from Debian package merged - - Support for custom command completion +### Fixes +* Bug fixes ... + +[1.14.0] - 2010-08-10 +--------------------- + +Major cleanups and further merges with Debian editline package. + +### Changes +* Merge in changes to `debian/` from `editline_1.12-6.debian.tar.gz` +* Migrate to use libtool +* Make `UNIQUE_HISTORY` configurable +* Make scrollback history (`HIST_SIZE`) configurable +* Configure options for toggling terminal bell and `SIGSTOP` (Ctrl-Z) +* Configure option for using termcap to read/control terminal size +* Rename Signal to `el_intr_pending`, from Festival speech-tools +* Merge support for capitalizing words (`M-c`) from Festival + speech-tools by Alan W Black +* Fallback backspace handling, in case `tgetstr("le")` fails + +### Fixes +* Cleanups and fixes thanks to the Sparse static code analysis tool +* Merge `el_no_echo` patch from Festival speech-tools +* Merge fixes from Heimdal project +* Completely refactor `rl_complete()` and `rl_list_possib()` with + fixes from the Heimdal project. Use `rl_set_complete_func()` and + `rl_set_list_possib_func()`. Default completion callbacks are now + available as a configure option `--enable-default-complete` +* Memory leak fixes +* Actually fix 8-bit handling by reverting old Debian patch +* Merge patch to improve compatibility with GNU readline, thanks to + Steve Tell from way back in 1997 and 1998 + + +[1.13.0] - 2010-03-09 +--------------------- + +Adaptations to Debian editline package. + +### Changes +* Major version number bump, adapt to Jim Studt's v1.12 +* Import `debian/` directory and adapt it to configure et al. +* Change library name to libeditline to distinguish it from BSD libedit + + +[0.3.0] - 2009-02-08 +-------------------- + +### Changes +* Support for ANSI arrow keys using configure --enable-arrow-keys + + +[0.2.x] - 2008-12-02 +-------------------- + +### Changes +* Patches from Debian package merged +* Support for custom command completion + +[UNRELEASED]: https://github.com/troglobit/finit/compare/1.14.2...HEAD +[1.14.2]: https://github.com/troglobit/finit/compare/1.14.1...1.14.2 +[1.14.1]: https://github.com/troglobit/finit/compare/1.14.0...1.14.1 +[1.14.0]: https://github.com/troglobit/finit/compare/1.13.0...1.14.0 +[1.13.0]: https://github.com/troglobit/finit/compare/0.3.0...1.13.0 +[0.3.0]: https://github.com/troglobit/finit/compare/0.2.3...0.3.0 +[0.2.x]: https://github.com/troglobit/finit/compare/0.0.0...0.2.3 diff --git a/Makefile.am b/Makefile.am index fb6092a..4906737 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,5 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -EXTRA_DIST = LICENSE +doc_DATA = README LICENSE CHANGELOG +EXTRA_DIST = LICENSE CHANGELOG SUBDIRS = src include man examples diff --git a/Makefile.in b/Makefile.in index 73380fb..4ebf045 100644 --- a/Makefile.in +++ b/Makefile.in @@ -14,6 +14,7 @@ # PARTICULAR PURPOSE. @SET_MAKE@ + VPATH = @srcdir@ am__make_dryrun = \ { \ @@ -53,8 +54,8 @@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure INSTALL NEWS TODO config.guess \ - config.sub depcomp install-sh ltmain.sh missing + $(top_srcdir)/configure INSTALL TODO config.guess config.sub \ + depcomp install-sh ltmain.sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ @@ -88,6 +89,35 @@ am__can_run_installinfo = \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(docdir)" +DATA = $(doc_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ @@ -253,7 +283,8 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -EXTRA_DIST = LICENSE +doc_DATA = README LICENSE CHANGELOG +EXTRA_DIST = LICENSE CHANGELOG SUBDIRS = src include man examples all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -317,6 +348,27 @@ clean-libtool: distclean-libtool: -rm -f libtool config.lt +install-docDATA: $(doc_DATA) + @$(NORMAL_INSTALL) + @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ + done + +uninstall-docDATA: + @$(NORMAL_UNINSTALL) + @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -641,9 +693,12 @@ distcleancheck: distclean exit 1; } >&2 check-am: all-am check: check-recursive -all-am: Makefile config.h +all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: + for dir in "$(DESTDIR)$(docdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -696,7 +751,7 @@ info: info-recursive info-am: -install-data-am: +install-data-am: install-docDATA install-dvi: install-dvi-recursive @@ -742,7 +797,7 @@ ps: ps-recursive ps-am: -uninstall-am: +uninstall-am: uninstall-docDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive @@ -754,14 +809,15 @@ uninstall-am: dist-zip distcheck distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-recursive uninstall uninstall-am + install install-am install-data install-data-am \ + install-docDATA install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-docDATA # Tell versions [3.59,3.63) of GNU make to not export all variables.