diff options
author | paul <paul> | 2005-04-29 03:20:54 +0000 |
---|---|---|
committer | paul <paul> | 2005-04-29 03:20:54 +0000 |
commit | 69fdfc835b1885b4bc396fd1e9380c72aff60421 (patch) | |
tree | 8a882a1e957945425e0e7153a741c8559a2e59d6 | |
parent | 1b129b9a2ab2b48a1edde23527685a58233d8e82 (diff) | |
download | quagga-69fdfc835b1885b4bc396fd1e9380c72aff60421.tar.bz2 quagga-69fdfc835b1885b4bc396fd1e9380c72aff60421.tar.xz |
2005-04-29 Paul Jakma <paul.jakma@sun.com>quagga.0.99.1.release
* NEWS: Added some more 0.99 news.
* configure.ac: bump to 0.99.1 (0.99.0 was never released except
via CVS snapshots)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 16 | ||||
-rwxr-xr-x | configure.ac | 2 |
3 files changed, 18 insertions, 6 deletions
@@ -1,6 +1,8 @@ -2005-04-28 Paul Jakma <paul.jakma@sun.com> +2005-04-29 Paul Jakma <paul.jakma@sun.com> - * NEWS: Added some 0.99 news + * NEWS: Added some more 0.99 news. + * configure.ac: bump to 0.99.1 (0.99.0 was never released except + via CVS snapshots) 2005-04-25 Paul Jakma <paul.jakma@sun.com> @@ -1,7 +1,8 @@ -* Changes in Quagga 0.99.0 +* Changes in Quagga 0.99.1 -- Zserv client code is now buffered in most cases, which should improve - responsiveness of daemons when they must send many messages to zebra. +- Zserv is now buffered via threads and non-blocking in most cases for both + clients and zebra, which should improve responsiveness of daemons when + they must send many messages to zebra. - 'show thread cpu' now displays both cpu+system and wall-clock time, where getrusage() is available. @@ -12,6 +13,15 @@ - Zebra now has a work-queue for RIB processing. See 'show work-queues' in the zebra daemon vty. +- Support for interface renaming on Linux netlink systems. + +- GNU Zebra bgpd merges, including BGP Graceful-restart and "match ip + route-source" command. + +- Automatic logging of backtraces should daemons crash to assist in + diagnosis. See the documentation for more information on configuring + logging correctly, and set --enable-gcc-rdynamic if compiling with gcc. + * Changes in Quagga 0.98.0 - Logging facilities upgraded. One can now specify a severity level diff --git a/configure.ac b/configure.ac index d6a0db52..e156a4f5 100755 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ ## $Id$ AC_PREREQ(2.53) -AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net]) +AC_INIT(Quagga, 0.99.1, [http://bugzilla.quagga.net]) AC_CONFIG_SRCDIR(lib/zebra.h) dnl ----------------------------------- |