forked from mirrors/thatmattlove-hyperglass
update version to 2.0.1
This commit is contained in:
parent
1d1dcd8319
commit
35d9c26eff
4 changed files with 11 additions and 3 deletions
|
|
@ -4,6 +4,14 @@ 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.1 - 2024-05-31
|
||||
|
||||
### Fixed
|
||||
- [#244](https://github.com/thatmattlove/hyperglass/issues/244): Fix issue with UI build where UI build directory already existed and therefore could not be created.
|
||||
- [#249](https://github.com/thatmattlove/hyperglass/issues/249): Fix issue where configuration values were improperly prepended with the `HYPERGLASS_APP_PATH` value.
|
||||
- [#251](https://github.com/thatmattlove/hyperglass/issues/251): Fix issue where browser-based DNS resolution did not show, causing FQDN queries to fail due to validation.
|
||||
- Fix issue where logo was improperly sized on small screens.
|
||||
|
||||
## 2.0.0 - 2024-05-28
|
||||
|
||||
_v2.0.0 is a major release of hyperglass. Many things have changed, and it is likely best to redeploy hyperglass in a new environment to migrate to v2._
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
from datetime import datetime
|
||||
|
||||
__name__ = "hyperglass"
|
||||
__version__ = "2.0.0"
|
||||
__version__ = "2.0.1"
|
||||
__author__ = "Matt Love"
|
||||
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
|
||||
__license__ = "BSD 3-Clause Clear License"
|
||||
|
|
|
|||
2
hyperglass/ui/package.json
vendored
2
hyperglass/ui/package.json
vendored
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"name": "ui",
|
||||
"description": "UI for hyperglass, the modern network looking glass",
|
||||
"author": "Matt Love",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "hyperglass"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
description = "hyperglass is the modern network looking glass that tries to make the internet better."
|
||||
authors = [
|
||||
{ name = "thatmattlove", email = "matt@hyperglass.dev" }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue