mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
Update version to v1.0.0
This commit is contained in:
17
CHANGELOG.md
17
CHANGELOG.md
@@ -2,8 +2,21 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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/),
|
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).
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
# 1.0.0 - 2021-05-30
|
||||||
|
|
||||||
|
### BREAKING CHANGE
|
||||||
|
The `external_link`, `help`, and `terms` parameters no longer exist and have been replaced with generic `links` and `menus` options.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [#139](https://github.com/checktheroads/hyperglass/issues/139): Fix an issue where the API cannot be queried by device name.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated UI dependencies
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [#140](https://github.com/checktheroads/hyperglass/issues/140): Genericize links and menus so that multiple links and/or menus can be defined and fully customized.
|
||||||
|
|
||||||
# 1.0.0-beta.82 - 2021-04-22
|
# 1.0.0-beta.82 - 2021-04-22
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
__name__ = "hyperglass"
|
__name__ = "hyperglass"
|
||||||
__version__ = "1.0.0-beta.82"
|
__version__ = "1.0.0"
|
||||||
__author__ = "Matt Love"
|
__author__ = "Matt Love"
|
||||||
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
|
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
|
||||||
__license__ = "BSD 3-Clause Clear License"
|
__license__ = "BSD 3-Clause Clear License"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ requires = ["poetry>=0.12"]
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
authors = ["Matt Love <matt@hyperglass.io>"]
|
authors = ["Matt Love <matt@hyperglass.io>"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Intended Audience :: Information Technology",
|
"Intended Audience :: Information Technology",
|
||||||
"Operating System :: POSIX :: Linux",
|
"Operating System :: POSIX :: Linux",
|
||||||
"Programming Language :: JavaScript",
|
"Programming Language :: JavaScript",
|
||||||
@@ -23,7 +23,7 @@ license = "BSD-3-Clause-Clear"
|
|||||||
name = "hyperglass"
|
name = "hyperglass"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/checktheroads/hyperglass"
|
repository = "https://github.com/checktheroads/hyperglass"
|
||||||
version = "1.0.0-beta.82"
|
version = "1.0.0"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
hyperglass = "hyperglass.console:CLI"
|
hyperglass = "hyperglass.console:CLI"
|
||||||
|
|||||||
Reference in New Issue
Block a user