diff --git a/CHANGELOG.md b/CHANGELOG.md index b726f7b..8c91d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 1.0.0-beta45 - 2020-06-27 + +### Fixed +- Webhook construction bugs that caused webhooks not to send +- Empty response handling for table output + +### Changed +- Removed RIPEStat for external data gathering, switched to [bgp.tools](https://bgp.tools) ## 1.0.0-beta44 - 2020-06-26 diff --git a/hyperglass/constants.py b/hyperglass/constants.py index f029351..8e8ecd7 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.44" +__version__ = "1.0.0-beta.45" __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 c851c3b..0886ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "hyperglass" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = ["Matt Love "] readme = "README.md"