Skip to content

Commit 4733dd1

Browse files
committed
prepare v2.0.3
1 parent 08fd310 commit 4733dd1

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.github/ISSUE_TEMPLATE/1-feature-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
attributes:
1919
label: Version
2020
description: What version of hyperglass are you currently running?
21-
placeholder: v2.0.2
21+
placeholder: v2.0.3
2222
validations:
2323
required: true
2424
- type: textarea

.github/ISSUE_TEMPLATE/2-bug-report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ body:
2222
attributes:
2323
label: Version
2424
description: What version of hyperglass are you currently running?
25-
placeholder: v2.0.2
25+
placeholder: v2.0.3
2626
validations:
2727
required: true
2828
- type: textarea

CHANGELOG.md

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

922
### 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.2
8+
git checkout v2.0.3
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.2"
7+
__version__ = "2.0.3"
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.2",
2+
"version": "2.0.3",
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.2"
3+
version = "2.0.3"
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)