diff --git a/CHANGELOG b/CHANGELOG index 0f0a7b1..d3dfd29 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,9 @@ +1.12.1 + +* Parser: ignore whitespace at the end of the protocol line +* Fix parser tests failing + 1.12.0 * Parser: Fix a bug when parsing 'BGP.*community' output spanning multiple lines diff --git a/VERSION b/VERSION index 0eed1a2..f8f4f03 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.0 +1.12.1 diff --git a/birdwatcher.go b/birdwatcher.go index e0548e1..6156767 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -16,7 +16,7 @@ import ( ) //go:generate versionize -var VERSION = "1.12.0" +var VERSION = "1.12.1" func isModuleEnabled(module string, modulesEnabled []string) bool { for _, enabled := range modulesEnabled {