From bf99b1d35c0de0adf9f3bdb76356f5b58a364a43 Mon Sep 17 00:00:00 2001 From: Benedikt Rudolph Date: Fri, 22 Feb 2019 11:28:33 +0100 Subject: [PATCH] Increment version, add changelog for 1.11.3 --- CHANGELOG | 12 ++++++++++++ VERSION | 2 +- birdwatcher.go | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c59d2e4..8d2371c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ +1.11.3 + +* Move code to Alice-LG GitHub organization +* Include caching information alongside ttl +* Repair endpoint 'protocols' +* Documentation on interpretation of route count numbers +* Improve example configuration +* Caching of parsed responses from birdc. + Eliminates an additional parser run for cache hits. +* Fix quotes in arguments of birdc commands in Routes{Table,Lookup}* methods. + This eliminates the "IP address expected" error in BIRD. + 1.11.2 * Parser: protocol parser can now parse all types of protocols diff --git a/VERSION b/VERSION index ca71766..0a5af26 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.2 +1.11.3 diff --git a/birdwatcher.go b/birdwatcher.go index 236d7dd..1571031 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -18,7 +18,7 @@ import ( ) //go:generate versionize -var VERSION = "1.11.2" +var VERSION = "1.11.3" func isModuleEnabled(module string, modulesEnabled []string) bool { for _, enabled := range modulesEnabled {