Skip to content

Commit

Permalink
Update NEWS and library version for keybinder 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Apr 26, 2010
1 parent bde1046 commit aac9446
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

keybinder v0.2.1
----------------

Released Monday, 26 April 2010

* Release key grabs if binding fails partially.

keybinder v0.2.0
----------------

Expand Down
16 changes: 15 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
AC_INIT(keybinder, 0.2.0,
AC_INIT(keybinder, 0.2.1,
[])
AC_CONFIG_SRCDIR(libkeybinder/bind.c)
AC_CONFIG_MACRO_DIR([m4])

# Libtool version
# When library changes: increment current, reset revision
# If library changed but is backwards-compatible: increment age
# Only internal changes: increment revision
m4_define([keybinder_lt_current], [0])
m4_define([keybinder_lt_revision], [1])
m4_define([keybinder_lt_age], [0])
LT_CURRENT=keybinder_lt_current
LT_REVISION=keybinder_lt_revision
LT_AGE=keybinder_lt_age
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)

AM_INIT_AUTOMAKE
GNOME_COMMON_INIT

Expand Down
2 changes: 1 addition & 1 deletion libkeybinder/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDES = $(GTK_CFLAGS)

AM_CFLAGS = -Wall

LIBKEYBINDER_VERSION = 0:0:0
LIBKEYBINDER_VERSION = $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)

# C library libkeybinder
#
Expand Down

0 comments on commit aac9446

Please sign in to comment.