Skip to content

Commit

Permalink
Update ChangeLog(s) and bump version for v1.16.1 release
Browse files Browse the repository at this point in the history
New ABI version 1.0.1

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
  • Loading branch information
troglobit committed Jun 7, 2019
1 parent 5496152 commit 7355f56
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
13 changes: 10 additions & 3 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@ Change Log
All notable changes to the project are documented in this file.


[1.16.1][UNRELEASED]
--------------------
[1.16.1] - 2019-06-07
---------------------

### Changes
- Major updates to the `editline.3` man page
- Cleanup of examples `cli.c` and `fileman.c`
- Add example of hidden input prompt to `cli.c`

### Fixes
- Fix #20: `configure --disable-eof` does not bite
- Fix #23: Make Ctrl-L clear the screan instead of starting a new line
- Fix #23: Make Ctrl-L clear the screan instead of starting a new line
Like Ctrl-D, which exits, Ctrl-L only clears the screen when the line
is empty and the cursor is at the start of the line, otherwise Ctrl-L
will redraw/refresh the current line.
- Fix #24: Fix behavior when TTY is narrower than column width, by Will Dietz
- Fix #25: Avoid continuously duplicate commands in history
- Fix #31: Aborting i-search with Ctrl-C should not generate signal


[1.16.0][] - 2018-09-16
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(editline, 1.16.1-dev, https://github.com/troglobit/editline/issues)
AC_INIT(editline, 1.16.1, https://github.com/troglobit/editline/issues)
AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
AM_SILENT_RULES([yes])

Expand Down
3 changes: 2 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
editline (1.16.1) unstable; urgency=medium

* Minor bug fix and documentation update release.
* Add missing pkg-config .pc file to -dev package

-- Joachim Nilsson <troglobit@gmail.com> Sat, 27 Apr 2019 15:01:07 +0200
-- Joachim Nilsson <troglobit@gmail.com> Fri, 07 Jun 2019 11:45:50 +0200

editline (1.16.0) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ libeditline_la_SOURCES = editline.c editline.h complete.c sysunix.c unix.h
libeditline_la_CFLAGS = -std=gnu99
libeditline_la_CFLAGS += -W -Wall -Wextra -Wundef -Wunused -Wstrict-prototypes
libeditline_la_CFLAGS += -Werror-implicit-function-declaration -Wshadow -Wcast-qual
libeditline_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0
libeditline_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:1:0

0 comments on commit 7355f56

Please sign in to comment.