Skip to content

Commit

Permalink
Version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lutter committed Aug 24, 2018
1 parent bbf31f7 commit 6cbf837
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
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.
- Lens changes/additions
* 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
Expand All @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 6cbf837

Please sign in to comment.