From bdb0c74a8c5162cacbd3584057e6e458d47dee3d Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 10 Jan 2021 01:18:02 -0700 Subject: [PATCH] bump version to 1.0.0-beta.71 --- CHANGELOG.md | 8 ++++++++ hyperglass/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 039aa74..fd59a10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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). +## 1.0.0-beta71 - 2021-01-10 + +### Added +- Added Google Analytics Support. Use the `google_analytics` field for the tracking ID in `hyperglass.yaml`. + +### Changed +- Minor frontend code improvements. + ## 1.0.0-beta70 - 2021-01-05 ### Fixed diff --git a/hyperglass/constants.py b/hyperglass/constants.py index ed71944..3e7180c 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.70" +__version__ = "1.0.0-beta.71" __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 7bea6fc..f749b07 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.70" +version = "1.0.0-beta.71" [tool.poetry.scripts] hyperglass = "hyperglass.console:CLI"