From 4fb7be9bd7a35ee772a3d0cbc33ed8e590c77b9f Mon Sep 17 00:00:00 2001 From: checktheroads Date: Fri, 18 Jun 2021 22:42:29 -0700 Subject: [PATCH] Prepare 1.0.2 release --- CHANGELOG.md | 5 +++++ hyperglass/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5541630..ff9f40cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), # 1.0.1 - 2021-06-17 +### Fixed +- [#150](https://github.com/checktheroads/hyperglass/issues/150): Fix handling of BIRD AS_PATH/Community targets. + +# 1.0.1 - 2021-06-17 + ### Fixed - UI: fix body overflow issue diff --git a/hyperglass/constants.py b/hyperglass/constants.py index e6e976d5..9d84b954 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.1" +__version__ = "1.0.2" __author__ = "Matt Love" __copyright__ = f"Copyright {datetime.now().year} Matthew Love" __license__ = "BSD 3-Clause Clear License" diff --git a/pyproject.toml b/pyproject.toml index 3db51961..ca7f138c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ license = "BSD-3-Clause-Clear" name = "hyperglass" readme = "README.md" repository = "https://github.com/checktheroads/hyperglass" -version = "1.0.1" +version = "1.0.2" [tool.poetry.scripts] hyperglass = "hyperglass.console:CLI"