Skip to content

Commit

Permalink
Update ChangeLog and bump ABI + release version for v2.1.3 release
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Nilsson <[email protected]>
  • Loading branch information
troglobit committed Sep 6, 2018
1 parent 7eee63e commit de89b66
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
7 changes: 4 additions & 3 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.


[v2.1.3][UNRELEASED] - 2018-09-xx
---------------------------------
[v2.1.3][] - 2018-09-06
-----------------------

### Changes
- Update joystick example, use first device, `/dev/input/js0`
Expand Down Expand Up @@ -366,7 +366,8 @@ v0.0.1 - 2012-03-17
Lua users mailing list.


[UNRELEASED]: https://github.com/troglobit/libuev/compare/v2.1.2...HEAD
[UNRELEASED]: https://github.com/troglobit/libuev/compare/v2.1.3...HEAD
[v2.1.3]: https://github.com/troglobit/libuev/compare/v2.1.2...v2.1.3
[v2.1.2]: https://github.com/troglobit/libuev/compare/v2.1.1...v2.1.2
[v2.1.1]: https://github.com/troglobit/libuev/compare/v2.1.0...v2.1.1
[v2.1.0]: https://github.com/troglobit/libuev/compare/v2.0.0...v2.1.0
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(libuev, 2.1.3-dev, https://github.com/troglobit/libuev/issues)
AC_INIT(libuev, 2.1.3, https://github.com/troglobit/libuev/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 @@
libuev (2.1.3) unstable; urgency=medium

* Minor bugfix release
- Updated joystick example, use first joystick, /dev/input/js0
- Use LIST_FOREACH_SAFE() instead of while() in uev_exit()
- New API test for uev_exit()
- Don't call uev_timer_set() when stopping a timer, may cause lockups
- Return OK immediately if a signal watcher is already stopped
* Packaging fixes: libuev.so symlink goes in -dev package
-- Joachim Nilsson <[email protected]> Thu, 06 Sep 2018 22:01:24 +0200

libuev (2.1.2) unstable; urgency=medium

* Minor bugfix release
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lib_LTLIBRARIES = libuev.la
libuev_la_SOURCES = uev.c io.c timer.c signal.c cron.c
libuev_la_CPPFLAGS = -D_GNU_SOURCE -D_TIME_BITS=64
libuev_la_CFLAGS = -W -Wall -Wextra
libuev_la_LDFLAGS = $(AM_LDFLAGS) -version-info 2:1:0
libuev_la_LDFLAGS = $(AM_LDFLAGS) -version-info 2:2:0

noinst_PROGRAMS = bench
bench_CPPFLAGS = -D_GNU_SOURCE
Expand Down

0 comments on commit de89b66

Please sign in to comment.