From 2db21ebd1aca2ae9a23010ab686e8b4772d4bcd5 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Thu, 28 Jan 2021 23:04:57 -0700 Subject: [PATCH] bump version to v1.0.0-beta.75 --- CHANGELOG.md | 6 ++++++ hyperglass/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd26692..fe8940d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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-beta75 - 2021-01-28 + +### Changed +- Default UI build timeout is now 180 seconds. +- The hyperglass `build-ui` CLI command now accepts a `--timeout` argument to override the UI build timeout. + ## 1.0.0-beta74 - 2021-01-25 ### Changed diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 7c3d67a..0b4bd60 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.74" +__version__ = "1.0.0-beta.75" __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 9eac82d..9190005 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.74" +version = "1.0.0-beta.75" [tool.poetry.scripts] hyperglass = "hyperglass.console:CLI"