diff --git a/CHANGELOG.md b/CHANGELOG.md index 176c566..4c3d05e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ 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.2 - 2024-06-01 + +### Fixed + +- [#257](https://github.com/thatmattlove/hyperglass/issues/257): Fix issue where if `web.location_display_mode` is set to `dropdown` (automatically or otherwise), the menu would remain open but become detached from the main element because the Query Type element came into view. +- [#253](https://github.com/thatmattlove/hyperglass/issues/253): _Actually_ fix issue where configuration values were improperly prepended with the `HYPERGLASS_APP_PATH` value. +- [#258](https://github.com/thatmattlove/hyperglass/issues/258): Center logo alignment on small screens. +- Fix broken license link in default credit menu. + +### Added + +- Added license to docs. +- [#254](https://github.com/thatmattlove/hyperglass/issues/254): Users may specify their own DNS over HTTPS provider if desired. + ## 2.0.1 - 2024-05-31 ### Fixed diff --git a/docs/pages/installation/upgrading.mdx b/docs/pages/installation/upgrading.mdx index 7b3b75e..eb60054 100644 --- a/docs/pages/installation/upgrading.mdx +++ b/docs/pages/installation/upgrading.mdx @@ -5,7 +5,7 @@ cd /opt/hyperglass docker compose down docker compose rm -f git fetch -git checkout v2.0.1 +git checkout v2.0.2 docker compose build docker compose up ``` diff --git a/hyperglass/constants.py b/hyperglass/constants.py index c090716..6bb2081 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "2.0.1" +__version__ = "2.0.2" __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 087fb11..b15fe34 100644 --- a/hyperglass/ui/package.json +++ b/hyperglass/ui/package.json @@ -1,5 +1,5 @@ { - "version": "2.0.1", + "version": "2.0.2", "name": "ui", "description": "UI for hyperglass, the modern network looking glass", "author": "Matt Love", diff --git a/pyproject.toml b/pyproject.toml index 7dc0cd9..6d5865f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hyperglass" -version = "2.0.1" +version = "2.0.2" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = [ { name = "thatmattlove", email = "matt@hyperglass.dev" }