1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

Increment version, add changelog for 1.11.3

This commit is contained in:
Benedikt Rudolph 2019-02-22 11:28:33 +01:00
parent 945e0446a0
commit bf99b1d35c
3 changed files with 14 additions and 2 deletions

View file

@ -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

View file

@ -1 +1 @@
1.11.2
1.11.3

View file

@ -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 {