Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lutter committed Jun 14, 2013
1 parent 53f916c commit da3fa80
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Makefile.maint
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include Makefile

rpmbuild_dir=/data/rpmbuild/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
rpb_spec=$(rpmbuild_dir)/augeas.spec
et_rel_dir=et:/var/www/sites/augeas.et.redhat.com/download/
release_dir=weave:/var/www/sites/download.augeas.net/

tarball=$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.gz

Expand All @@ -22,7 +22,7 @@ build-rpm:
upload:
@gpg -q --batch --verify $(tarball).sig > /dev/null 2>&1 || \
gpg --output $(tarball).sig --detach-sig $(tarball); \
rsync -v $(tarball) $(tarball).sig $(et_rel_dir); \
rsync -v $(tarball) $(tarball).sig $(release_dir); \
git push --tags

tag-release:
Expand Down
61 changes: 52 additions & 9 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
1.X.X - 2013-XX-XX
1.1.0 - 2013-06-14
- General changes/additions
- API changes/additions
- Augtool/aug_srun changes/additions
- XPath changes/additions
* Handle files with special characters in their name, bug #343
* Fix type error in composition ('f; g') of functions, bug #328
* Improve detection of version script; make build work on Illumos with
GBU ld (Igor Pashev)
* augparse: add --trace option to print filenames of all modules being
loaded
* Various lens documentation improvements (Jasper Lievisse Adriaanse)
- Lens changes/additions
* ActiveMQ_*: new lens for ActiveMQ/JBoss A-MQ (Brian Harrington)
* AptCacherNGSecurity: new lens for /etc/apt-cacher-ng/security.conf
(Erik Anderson)
* Automaster: accept spaces between options
* BBHosts: support more flags and downtime feature (Mathieu Alorent)
* Bootconf: new lens for OpenBSD's /etc/boot.conf (Jasper Adriaanse)
* Desktop: Support dos eol
* Dovecot: New lens for dovecot configurations
* Dhclient: read /etc/dhclient.conf used in OpenBSD (Jasper Adriaanse)
* Dovecot: New lens for dovecot configurations (Serge Smetana)
* Fai_Diskconfig: Optimize some regexps
* Fonts: exclude all README files (Jasper Adriaanse)
* Inetd: support IPv6 addresses, bug #320
* IniFile: Add lns_loose and lns_loose_multiline definitions
Support smart quotes
Warning: Smart quotes support means users should not add
Expand All @@ -25,27 +38,57 @@
* IPRoute2: Support for iproute2 files (Davide Guerri)
* JaaS: lens for the Java Authentication and Authorization Service
(Simon Vocella)
* JettyRealm: new lens for jetty-realm.properties (Brian Harrington)
* JMXAccess, JMXPassword: new lenses for ActiveMQ's JMX files
(Brian Harrington)
* Krb5: Use standard comments and empty lines
Support dos eol
Improve performances
Improve performance
Accept pkinit_anchors (Andrew Anderson)
* Lightdm: Use standard comments and empty lines
* LVM: New lens for LVM metadata
* LVM: New lens for LVM metadata (Gabriel)
* Mdadm_conf: optimize some regexps
* MongoDBServer: new lens (Brian Harrington)
* Monit: also load /etc/monitrc (Jasper Adriaanse)
* MySQL: Use standard comments and empty lines
Support dos eol
* NagiosCfg: handle Icinga and resources.cfg (Jasper Adriaanse)
* Nrpe: accept any config option rather than predefined list (Gonzalo
Servat); optimize some regexps
* Ntpd: new lense for OpenNTPD config (Jasper Adriaanse)
* Odbc: Use standard comments and empty lines
* Openshift_*: new lenses for Openshift support (Brian Harrington)
* Quote: allow multiple spaces in quote_spaces; improve docs
* Passwd: allow period in user names in spec, bug #337; allow overrides
in nisentry
* PHP: Support smart quotes
Use standard comments and empty lines
Load /etc/php*/fpm/pool.d/*.conf (Enrico Stahn)
* Postfix_master: allow [] in words, bug #345
* Resolv: support 'lookup' and 'family' key words, bug #320
(Jasper Adriaanse))
* Rsyslog: support :omusrmsg: list of users in actions
* RX: add CR to RX.space_in
* Samba: Use standard comments and empty lines
Support dos eol
* Schroot: Support smart quotes
* Services: support port ranges (Branan Purvine-Riley)
* Shellvars: optimize some regexps; reinstate /etc/sysconfig/network,
fixes bug #330, RHBZ#904222, RHBZ#920609; parse /etc/rc.conf.local
from OpenBSD
* Sip_Conf: New lens for sip.conf configurations (Rob Tucker)
* Splunk: new lens (Tim Brigham)
* Subversion: Support smart quotes
Use standard comments and empty lines
Use IniFile.entry_multiline_generic
Use IniFile.empty_noindent
Support dos eol
* Systemd: Support smart quotes
* Yum: Support dos eol
* Sudoers: allow user aliases in specs
* Sysctl: exclude README file
* Systemd: Support smart quotes; allow backslashes in values
* Xinetd: handle missing values in list, bug #307
* Xorg: allow 'Screen' in Device section, bug #344
* Yum: Support dos eol, optimize some regexps

1.0.0 - 2012-12-21
- General changes/additions
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(augeas, 1.0.0)
AC_INIT(augeas, 1.1.0)
AC_CONFIG_SRCDIR([src/augeas.c])
AC_CONFIG_AUX_DIR([build/aux])
AM_CONFIG_HEADER([config.h])
Expand Down Expand Up @@ -65,7 +65,7 @@ if test x"$enable_debug" = x"yes"; then
fi

dnl Version info in libtool's notation
AC_SUBST([LIBAUGEAS_VERSION_INFO], [16:0:16])
AC_SUBST([LIBAUGEAS_VERSION_INFO], [17:0:17])
AC_SUBST([LIBFA_VERSION_INFO], [5:0:4])

AC_GNU_SOURCE
Expand Down

0 comments on commit da3fa80

Please sign in to comment.