prepare v2.0.3

This commit is contained in:
thatmattlove 2024-06-16 17:17:13 -04:00
parent 08fd310b44
commit 4733dd1893
7 changed files with 19 additions and 6 deletions

View file

@ -18,7 +18,7 @@ body:
attributes:
label: Version
description: What version of hyperglass are you currently running?
placeholder: v2.0.2
placeholder: v2.0.3
validations:
required: true
- type: textarea

View file

@ -22,7 +22,7 @@ body:
attributes:
label: Version
description: What version of hyperglass are you currently running?
placeholder: v2.0.2
placeholder: v2.0.3
validations:
required: true
- type: textarea

View file

@ -4,6 +4,19 @@ 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.3 - 2024-06-16
### Fixed
- [#262](https://github.com/thatmattlove/hyperglass/issues/262): Fix issue where Mikrotik output was improperly parsed and displayed an error as a result.
- Fixed issue where incorrect error styles were displayed.
- Fixed issue where 'results' accordion component did not re-open when closed.
- Fixed issue where pattern-based directive rules failed validation.
### Changed
- Set default logo width (back) to 50%, adjusted how the `web.logo.width` setting is handled in the UI.
## 2.0.2 - 2024-06-01
### Fixed

View file

@ -5,7 +5,7 @@ cd /opt/hyperglass
docker compose down
docker compose rm -f
git fetch
git checkout v2.0.2
git checkout v2.0.3
docker compose build
docker compose up
```

View file

@ -4,7 +4,7 @@
from datetime import datetime
__name__ = "hyperglass"
__version__ = "2.0.2"
__version__ = "2.0.3"
__author__ = "Matt Love"
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
__license__ = "BSD 3-Clause Clear License"

View file

@ -1,5 +1,5 @@
{
"version": "2.0.2",
"version": "2.0.3",
"name": "ui",
"description": "UI for hyperglass, the modern network looking glass",
"author": "Matt Love",

View file

@ -1,6 +1,6 @@
[project]
name = "hyperglass"
version = "2.0.2"
version = "2.0.3"
description = "hyperglass is the modern network looking glass that tries to make the internet better."
authors = [
{ name = "thatmattlove", email = "matt@hyperglass.dev" }