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 {