From 56994baa6c456711929c2e96c1f6c085883c88ec Mon Sep 17 00:00:00 2001 From: Benedikt Rudolph Date: Wed, 27 Feb 2019 11:20:51 +0100 Subject: [PATCH] Increment version, add changelog for 1.12.1 --- CHANGELOG | 5 +++++ VERSION | 2 +- birdwatcher.go | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 {