diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f97392..fab43e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,21 @@ 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). +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). + +# 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 diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 1df1554..072cc68 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.82" +__version__ = "1.0.0" __author__ = "Matt Love" __copyright__ = f"Copyright {datetime.now().year} Matthew Love" __license__ = "BSD 3-Clause Clear License" diff --git a/pyproject.toml b/pyproject.toml index ae26685..28c76cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["poetry>=0.12"] [tool.poetry] authors = ["Matt Love "] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Information Technology", "Operating System :: POSIX :: Linux", "Programming Language :: JavaScript", @@ -23,7 +23,7 @@ license = "BSD-3-Clause-Clear" name = "hyperglass" readme = "README.md" repository = "https://github.com/checktheroads/hyperglass" -version = "1.0.0-beta.82" +version = "1.0.0" [tool.poetry.scripts] hyperglass = "hyperglass.console:CLI"