diff --git a/NEWS b/NEWS index 7f214e333..1f42452ac 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,11 @@ -1.11.0 - ????-??-?? +1.11.0 - 2018-08-24 - General changes/additions * augmatch: add a --quiet option; make the exit status useful to tell whether there was a match or not * Drastically reduce the amount of memory needed to evaluate complex path expressions against large files (Issue #569) + * Fix a segfault on OSX when 'augmatch' is run without any + arguments (Issue #556) - API changes * aug_source did not in fact return the source; and always returned NULL for that. That has been fixed. @@ -11,6 +13,8 @@ * Chrony: add new options supported in chrony 3.2 and 3.3 (Miroslav Lichvar) * Dhclient: fix parsing of append/prepend and similar directives (John Morrissey) + * Fstab: allow leading whitespace in mount entry lines + (Pino Toscano) (Issue #544) * Grub: tolerate some invalid entries. Those invalid entries get mapped to '#error' nodes * Httpd: accept comments with whitespace right after a tag @@ -25,6 +29,7 @@ * Redis: accept the 'bind' statement with multiple IP addresses (yannh) (Issue #194) * Rsyslog: support include() directive introduced in rsyslog 8.33 + * Strongswan: new lens (Kaarle Ritvanen) * Systemd: do not try to treat *.d or *.wants directories as configuration files (Issue #548) diff --git a/configure.ac b/configure.ac index 41c8eb108..11d7ade70 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(augeas, 1.10.1) +AC_INIT(augeas, 1.11.0) AC_CONFIG_SRCDIR([src/augeas.c]) AC_CONFIG_AUX_DIR([build/ac-aux]) AM_CONFIG_HEADER([config.h]) @@ -65,8 +65,8 @@ if test x"$enable_debug" = x"yes"; then fi dnl Version info in libtool's notation -AC_SUBST([LIBAUGEAS_VERSION_INFO], [24:0:24]) -AC_SUBST([LIBFA_VERSION_INFO], [6:1:5]) +AC_SUBST([LIBAUGEAS_VERSION_INFO], [24:1:24]) +AC_SUBST([LIBFA_VERSION_INFO], [6:2:5]) AC_GNU_SOURCE