diff --git a/CHANGELOG.md b/CHANGELOG.md index 4238316..b726f7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 1.0.0-beta44 - 2020-06-26 + +### Added +- Support for Microsoft Teams webhook + +### Fixed +- If webhooks were enabled, a hung test connection to RIPEStat would cause the query to time out + ## 1.0.0-beta43 - 2020-06-22 ### Fixed diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 84791fb..f029351 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.43" +__version__ = "1.0.0-beta.44" __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 ad3d3bb..c851c3b 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.43" +version = "1.0.0-beta.44" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = ["Matt Love "] readme = "README.md"