diff --git a/CHANGELOG.md b/CHANGELOG.md index 783273fa..176c5667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,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). +## 2.0.1 - 2024-05-31 + +### Fixed +- [#244](https://github.com/thatmattlove/hyperglass/issues/244): Fix issue with UI build where UI build directory already existed and therefore could not be created. +- [#249](https://github.com/thatmattlove/hyperglass/issues/249): Fix issue where configuration values were improperly prepended with the `HYPERGLASS_APP_PATH` value. +- [#251](https://github.com/thatmattlove/hyperglass/issues/251): Fix issue where browser-based DNS resolution did not show, causing FQDN queries to fail due to validation. +- Fix issue where logo was improperly sized on small screens. + ## 2.0.0 - 2024-05-28 _v2.0.0 is a major release of hyperglass. Many things have changed, and it is likely best to redeploy hyperglass in a new environment to migrate to v2._ diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 2a9fcd9f..c0907169 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "2.0.0" +__version__ = "2.0.1" __author__ = "Matt Love" __copyright__ = f"Copyright {datetime.now().year} Matthew Love" __license__ = "BSD 3-Clause Clear License" diff --git a/hyperglass/ui/package.json b/hyperglass/ui/package.json index 18d6964c..087fb11b 100644 --- a/hyperglass/ui/package.json +++ b/hyperglass/ui/package.json @@ -1,5 +1,5 @@ { - "version": "2.0.0", + "version": "2.0.1", "name": "ui", "description": "UI for hyperglass, the modern network looking glass", "author": "Matt Love", diff --git a/pyproject.toml b/pyproject.toml index fd2d43e1..7dc0cd95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hyperglass" -version = "2.0.0" +version = "2.0.1" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = [ { name = "thatmattlove", email = "matt@hyperglass.dev" }