Skip to content

Commit

Permalink
prepare v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed Jun 1, 2024
1 parent 6b37ce9 commit 0137b04
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/installation/upgrading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion hyperglass/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion hyperglass/ui/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }
Expand Down

0 comments on commit 0137b04

Please sign in to comment.