diff options
| -rw-r--r-- | ChangeLog | 78 | ||||
| -rw-r--r-- | Makefile.am | 14 | ||||
| -rw-r--r-- | NEWS | 55 | ||||
| -rw-r--r-- | configure.in | 4 | 
4 files changed, 100 insertions, 51 deletions
| @@ -1,46 +1,32 @@ -0.9.4  [2009-01-19] -    - Add support for creating multiple CFs in rrdbot-create. [Stoned Elipot] - -0.9.3  [2009-01-16] -    - Add support for printing out MIB name in rrdbot-get -     -0.9.2  [2008-09-25] -    - Add parameter to specify bind address. -     -0.9.1  [2008-07-07] -    - Fix bug with table queries in rrdbot-get -    - rrdbot-get now prints out unsigned integers properly. -     -0.9  [2008-04-16] -    - Support failover between multiple agents. -    - Support table queries by looking up table indexes. -    - Major refactoring of internals. -    - Warn and ignore MIBs that we don't recognize.  -    - Support parsing strings into integers and floats - -     -0.8  [2007-07-16] -    - Fix assertion when reallocating SNMP request memory - -0.7 -    - Use my real name 'Stef Walter' -      See: http://memberwebs.com/nielsen/ - -0.6 -    - Fix bug with asynchronous resolver when daemonizing - -0.5 -    - Added SNMP version 2c support for rrdbot-get [Stoned Elipot] -    - Fixed asynchronous resolving on FreeBSD -    - Fix bug where rrdbot-create ignored '-c' argument [benj] -    - Remove pid file when exiting [benj] -    - Fix bug where config files are not enumerated on reiserfs [benj] - -0.4 -    - Reduced memory usage of SNMP requests -    - Added asynchronous DNS resolver -    - Added support for RRD files not in the normal places -    - Added SNMP version 2c support -     -0.3 -    - Initial public release +=== ChangeLog discontinued === + + With the move to git, this project is switching from a ChangeLog + file to relying on commit messages to provide change history. Please + write commit messages in the following format: + +=== begin example commit === + + Short explanation of the commit + + Longer explanation explaining exactly what's changed, whether any + external or private interfaces changed, what bugs were fixed (with bug + tracker reference if applicable) and so forth. Be concise but not too + brief. + +=== end example commit === + + - Always add a brief description of the commit to the _first_ line of + the commit and terminate by two newlines. This may be the title of + a fixed bug, copied from Bugzilla. + + - First line (the brief description) must only be one sentence and + should start with a capital letter unless it starts with a + lowercase symbol or identifier. Don't use a trailing full stop, + and don't exceed 72 characters. + + - The main description (the body) is normal prose and should use + normal punctuation and capital letters where appropriate. + + - When committing code on behalf of others use the --author option, + e.g. git commit -a --author "Joe Coder <joe@coder.org>" and + --signoff. diff --git a/Makefile.am b/Makefile.am index 969582d..2f43f51 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,9 +2,19 @@  EXTRA_DIST = mib acsite.m4  SUBDIRS = bsnmp common daemon tools mibs doc -# Clean up any EXTRA_DIST we're distributing  dist-hook: -	rm -rf `find $(distdir)/ -name .svn` +	@if test -d "$(srcdir)/.git"; \ +	then \ +		echo Creating ChangeLog && \ +		( cd "$(top_srcdir)" && \ +		  echo '# Generate automatically. Do not edit.'; echo; \ +		  $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \ +		&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ +		|| ( rm -f ChangeLog.tmp ; \ +		     echo Failed to generate ChangeLog >&2 ); \ +	else \ +		echo A git clone is required to generate a ChangeLog >&2; \ +	fi  # Make the config directory  install-exec-hook: @@ -1 +1,54 @@ -See ChangeLog
\ No newline at end of file +0.9.5  [2009-10-28] +    - Move development to git. +    - Add more MIB files from Freebsd and BSNMP +    - Support IPv6 addresses in urls and requests via IPv6. +    - Builds on Solaris +    - Fix memory leaks +    - Better config file parsing. + +0.9.4  [2009-01-19] +    - Add support for creating multiple CFs in rrdbot-create. [Stoned Elipot] + +0.9.3  [2009-01-16] +    - Add support for printing out MIB name in rrdbot-get + +0.9.2  [2008-09-25] +    - Add parameter to specify bind address. + +0.9.1  [2008-07-07] +    - Fix bug with table queries in rrdbot-get +    - rrdbot-get now prints out unsigned integers properly. + +0.9  [2008-04-16] +    - Support failover between multiple agents. +    - Support table queries by looking up table indexes. +    - Major refactoring of internals. +    - Warn and ignore MIBs that we don't recognize. +    - Support parsing strings into integers and floats + + +0.8  [2007-07-16] +    - Fix assertion when reallocating SNMP request memory + +0.7 +    - Use my real name 'Stef Walter' +      See: http://memberwebs.com/nielsen/ + +0.6 +    - Fix bug with asynchronous resolver when daemonizing + +0.5 +    - Added SNMP version 2c support for rrdbot-get [Stoned Elipot] +    - Fixed asynchronous resolving on FreeBSD +    - Fix bug where rrdbot-create ignored '-c' argument [benj] +    - Remove pid file when exiting [benj] +    - Fix bug where config files are not enumerated on reiserfs [benj] + +0.4 +    - Reduced memory usage of SNMP requests +    - Added asynchronous DNS resolver +    - Added support for RRD files not in the normal places +    - Added SNMP version 2c support + +0.3 +    - Initial public release diff --git a/configure.in b/configure.in index 8281dbd..39d073a 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@  dnl Process this file with autoconf to produce a configure script. -AC_INIT(rrdbot, 0.9.4, stef@memberwebs.com) -AM_INIT_AUTOMAKE(rrdbot, 0.9.4) +AC_INIT(rrdbot, 0.9.5, stef@memberwebs.com) +AM_INIT_AUTOMAKE(rrdbot, 0.9.5)  m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) | 
