diff --git a/CHANGELOG b/CHANGELOG index 52b300b..0f0a7b1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,9 @@ +1.12.0 + +* Parser: Fix a bug when parsing 'BGP.*community' output spanning multiple lines +* Fix the default config path to '/etc/birdwatcher/birdwatcher.conf' + 1.11.5 This version brings a major redesign of the cache feature. The cache is more diff --git a/VERSION b/VERSION index e6dbb7c..0eed1a2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.5 +1.12.0 diff --git a/birdwatcher.go b/birdwatcher.go index 7173391..91c12a8 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -18,7 +18,7 @@ import ( ) //go:generate versionize -var VERSION = "1.11.5" +var VERSION = "1.12.0" func isModuleEnabled(module string, modulesEnabled []string) bool { for _, enabled := range modulesEnabled {