From acd0f59465514d3733566049d3a2ba297545f680 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Mon, 25 Jan 2021 23:30:55 -0700 Subject: [PATCH] bump version to 1.0.0-beta.74 --- CHANGELOG.md | 9 +++++++++ hyperglass/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1942b198..cd266928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## 1.0.0-beta74 - 2021-01-25 + +### Changed +- The Scrapli driver no longer specifically ignores the system's SSH config file. +- Updated UI dependencies. + +### Fixed +- [#109](https://github.com/checktheroads/hyperglass/issues/109): Remove the custom error page, because it doesn't work and doesn't really add much. + ## 1.0.0-beta73 - 2021-01-18 ### Added diff --git a/hyperglass/constants.py b/hyperglass/constants.py index f084854d..7c3d67ac 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.73" +__version__ = "1.0.0-beta.74" __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 37121064..9eac82d7 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.0-beta.73" +version = "1.0.0-beta.74" [tool.poetry.scripts] hyperglass = "hyperglass.console:CLI"