]> gitweb.michael.orlitzky.com - apply-default-acl.git/commitdiff
autotools: bump the package and library versions to v0.3.0 and v2.0.0.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 2 Mar 2018 20:20:27 +0000 (15:20 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 2 Mar 2018 20:55:29 +0000 (15:55 -0500)
The apply_default_acl() function now takes a third "recursive"
parameter, so the library gets a new version.

configure.ac
src/Makefile.am

index 2bc57ebbee36858c8dba44dbd098ca18733334ed..9f6d1ef46eac98fb99fb6069aa3fd425727942c3 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.68])
-AC_INIT([apply-default-acl], [0.2.0], [michael@orlitzky.com])
+AC_INIT([apply-default-acl], [0.3.0], [michael@orlitzky.com])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
 AC_CONFIG_SRCDIR([src/apply-default-acl.c])
 AC_CONFIG_FILES([Makefile src/Makefile])
index 0aa6054229ea53f402a224bdd9c08d92bf4865c4..94a4c1d9b3a232d732235878fb734c1504a3dc2c 100644 (file)
@@ -3,8 +3,9 @@ libadacl_la_SOURCES = libadacl.c libadacl.h
 libadacl_la_LIBADD = -lacl
 include_HEADERS = libadacl.h
 
-# The apply_default_acl_ex() function was dropped in v0.2.0.
-libadacl_la_LDFLAGS = -version-info 1:0:0
+# The apply_default_acl_ex() function was dropped in v0.2.0,
+# and the "recursive" parameter was added in v0.3.0.
+libadacl_la_LDFLAGS = -version-info 2:0:0
 
 bin_PROGRAMS = apply-default-acl
 apply_default_acl_LDADD = libadacl.la