Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lutterkort committed Nov 30, 2009
1 parent 94bb576 commit 38f790d
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -22,5 +22,6 @@ Contributions by:
Alan Pevec <apevec@redhat.com>
Raphael Pinson <raphink@gmail.com>
Robin Lee Powell <rlpowell@digitalkingdom.org>
Satoru SATOH <satoru.satoh@gmail.com>
Nahum Shalman <nshalman elys com>
Dean Wilson <dwilson@blueowl.it>
30 changes: 30 additions & 0 deletions NEWS
@@ -1,3 +1,33 @@
0.6.0 - 2009-11-30
- Add error reporting API (aug_error and related calls); use to report
error details in a variety of places
- Path expressions: add regexp matching; add operator '|' to form union
of nodesets (ticket #89)
- Tolerate non-C locales from the environment (ticket #35); it is no
longer necessary to set the locale to C from the outside
- use stpcpy/stpncpy from gnulib (needed for building on Solaris)
- Properly check regexp literals for syntax errors (ticket #93)
- Distribute and install vim syntax files (ticket #97)
- many more bugfixes
- Lens changes/additions
* Apt_preferences: support version pin; filter out empty lines (Matt
Palmer)
* Cron: variables can contain '_' etc. (ticket #94)
* Ethers: new lens for /etc/ethers (Satoru SATOH)
* Fstab: allow '#' in spec (ticket #95)
* Group: allow empty password field (ticket #95)
* Inittab: parse end-of-line comments into a #comment
* Krb5: support kdc section; add v4_name_convert subsection to
libdefaults (ticket #95)
* Lokkit: add mising eol to forward_port; make argument for --trust
more permissive
* Pam: allow '-' before type
* Postfix_access: new lens for /etc/postfix/access (Partha Aji)
* Rx: allow '!' in device_name
* Sudoers: allow certain backslash-quoted characters in a command (Matt
Palmer)
* Wine: new lens to read Windows registry files

0.5.3 - 2009-09-14
- Match trees on label + value, not just label; see
tests/modules/pass_strip_quotes.aug for how that enables stripping
Expand Down
3 changes: 3 additions & 0 deletions augeas.spec.in
Expand Up @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/augeas.pc

%changelog
* Mon Nov 30 2009 David Lutterkort <lutter@redhat.com> - 0.6.0-1
- Install vim syntax files

* Mon Sep 14 2009 David Lutterkort <lutter@redhat.com> - 0.5.3-1
- New version

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
@@ -1,4 +1,4 @@
AC_INIT(augeas, 0.5.3)
AC_INIT(augeas, 0.6.0)
AC_CONFIG_SRCDIR([src/augeas.c])
AC_CONFIG_AUX_DIR([build/aux])
AM_CONFIG_HEADER([config.h])
Expand Down Expand Up @@ -56,8 +56,8 @@ AC_ARG_WITH([failmalloc],
AM_CONDITIONAL([WITH_FAILMALLOC], [test x$with_failmalloc != xno])

dnl Version info in libtool's notation
AC_SUBST([LIBAUGEAS_VERSION_INFO], [9:2:9])
AC_SUBST([LIBFA_VERSION_INFO], [2:0:1])
AC_SUBST([LIBAUGEAS_VERSION_INFO], [10:0:10])
AC_SUBST([LIBFA_VERSION_INFO], [3:0:2])

AC_GNU_SOURCE

Expand Down

0 comments on commit 38f790d

Please sign in to comment.