Skip to content

Commit 0137b04

Browse files
committed
prepare v2.0.2
1 parent 6b37ce9 commit 0137b04

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## 2.0.2 - 2024-06-01
8+
9+
### Fixed
10+
11+
- [#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.
12+
- [#253](https://github.com/thatmattlove/hyperglass/issues/253): _Actually_ fix issue where configuration values were improperly prepended with the `HYPERGLASS_APP_PATH` value.
13+
- [#258](https://github.com/thatmattlove/hyperglass/issues/258): Center logo alignment on small screens.
14+
- Fix broken license link in default credit menu.
15+
16+
### Added
17+
18+
- Added license to docs.
19+
- [#254](https://github.com/thatmattlove/hyperglass/issues/254): Users may specify their own DNS over HTTPS provider if desired.
20+
721
## 2.0.1 - 2024-05-31
822

923
### Fixed

docs/pages/installation/upgrading.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd /opt/hyperglass
55
docker compose down
66
docker compose rm -f
77
git fetch
8-
git checkout v2.0.1
8+
git checkout v2.0.2
99
docker compose build
1010
docker compose up
1111
```

hyperglass/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import datetime
55

66
__name__ = "hyperglass"
7-
__version__ = "2.0.1"
7+
__version__ = "2.0.2"
88
__author__ = "Matt Love"
99
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
1010
__license__ = "BSD 3-Clause Clear License"

hyperglass/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.1",
2+
"version": "2.0.2",
33
"name": "ui",
44
"description": "UI for hyperglass, the modern network looking glass",
55
"author": "Matt Love",

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hyperglass"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "hyperglass is the modern network looking glass that tries to make the internet better."
55
authors = [
66
{ name = "thatmattlove", email = "[email protected]" }

0 commit comments

Comments
 (0)