Skip to content

Commit

Permalink
Update ChangeLog and bump version for v1.16.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
  • Loading branch information
troglobit committed Sep 16, 2018
1 parent 5f86c20 commit 59fa265
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
19 changes: 13 additions & 6 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Change Log
All notable changes to the project are documented in this file.


[1.16.0][UNRELEASED] - 2018-03-xx
---------------------------------
[1.16.0][] - 2018-09-16
-----------------------

Event loop callback support.

Expand All @@ -15,10 +15,14 @@ Event loop callback support.
- `rl_refresh_line()`, new GNU Readline compat function
- `rl_callback_*()`, alternate interface to plain `readline()` for event
loops. Modeled after the GNU Readline API
- `rl_completion_entry_function`, new GNU Readline compat user hook
- Add support for Ctrl-Right and Ctrl-Left, forward/backward word
- `rl_completion_entry_function`, and `rl_attempted_completion_function`
are two new GNU Readline compat user hooks for the completion framework
- `rl_completion_matches()` and `rl_filename_completion_function()`
are two new GNU Readline compat functions
- Add new example: `fileman.c` from GNU Readline to demonstrate the
level of compatibility of the new completion framework
level of compatibility of the revamped completion framework
- Add support for Ctrl-Right and Ctrl-Left, forward/backward word
- Add .deb package to official release target

### Fixes
- Fixed header guards, avoid using leading `__`
Expand All @@ -30,6 +34,8 @@ Event loop callback support.
- Add `-Wextra` to std `CFLAGS`
- Check `fclose()` return value in in `write_history()` and `read_history()`
- Initialize global variables and reset to `NULL` on `free()`
- Fix off-by-one in forward kill word, avoid deleting too much
- Skip (or kill) leading whitespace when skipping (or killing) forwards


[1.15.3][] - 2017-09-07
Expand Down Expand Up @@ -197,7 +203,8 @@ Adaptations to Debian editline package.
- First version, forked from Minix current 2008-06-06


[UNRELEASED]: https://github.com/troglobit/finit/compare/1.15.3...HEAD
[UNRELEASED]: https://github.com/troglobit/finit/compare/1.16.0...HEAD
[1.16.0]: https://github.com/troglobit/finit/compare/1.15.3...1.16.0
[1.15.3]: https://github.com/troglobit/finit/compare/1.15.2...1.15.3
[1.15.2]: https://github.com/troglobit/finit/compare/1.15.1...1.15.2
[1.15.1]: https://github.com/troglobit/finit/compare/1.15.0...1.15.1
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.0-dev, https://github.com/troglobit/editline/issues)
AC_INIT(editline, 1.16.0, https://github.com/troglobit/editline/issues)
AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
AM_SILENT_RULES([yes])

Expand Down
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
editline (1.16.0) unstable; urgency=medium

* New upstream release, v1.60.0
+ Event loop support
+ New GNU Readline compat functions and callbacks
+ Minor compat fixes for movement and deletion
* Bump .so/ABI version => libeditline1
* New maintainer, upstream author

-- Joachim Nilsson <troglobit@gmail.com> Sun, 16 Sep 2018 09:45:53 +0200

editline (1.15.3-1) unstable; urgency=medium

* New upstream bug fix release, v1.15.3
Expand Down

0 comments on commit 59fa265

Please sign in to comment.