diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6d32c..41d8a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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). +## 1.0.0-beta47 - 2020-07-04 +### Added +- Opengraph images are now automatically generated in the correct format from any valid image file. +- Better color mode toggle icons (they now match [hyperglass.io](https://hyperglass.io)). + +### Changed +- Improved SEO & Accessibility for UI. +- Default traceroute help link now points to new docs site. +- Slightly different default black & white colors (they now match [hyperglass.io](https://hyperglass.io)). +- Various docs site improvements + +### Fixed +- Remove `platform.linux_distribution()` which was removed in Python 3.8 +- Width of page is no longer askew when `logo_subtitle` is set as the `title_mode` +- Generated favicon manifest files now go to the correct directory. +- Various docs site fixes + ## 1.0.0-beta46 - 2020-06-28 ### Added diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 5b62f2b..40872f7 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "1.0.0-beta.46" +__version__ = "1.0.0-beta.47" __author__ = "Matt Love" __copyright__ = f"Copyright {datetime.now().year} Matthew Love" __license__ = "BSD 3-Clause Clear License" diff --git a/poetry.lock b/poetry.lock index d755893..c48972c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -249,6 +249,14 @@ optional = false python-versions = "*" version = "0.3.0" +[[package]] +category = "main" +description = "Distro - an OS platform information API" +name = "distro" +optional = false +python-versions = "*" +version = "1.5.0" + [[package]] category = "dev" description = "Discover and load entry points from installed packages." @@ -1192,7 +1200,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] testing = ["jaraco.itertools", "func-timeout"] [metadata] -content-hash = "fc4f5a7899f343fb9cbfa8d4cd3a40230489eb1bf5a1bc7af6e2dbe43ae7d31a" +content-hash = "9e9439255098433e8e16b48431c3eb79d141620bc029be733d95add979948511" python-versions = "^3.6.1" [metadata.files] @@ -1377,6 +1385,10 @@ dataclasses = [ distlib = [ {file = "distlib-0.3.0.zip", hash = "sha256:2e166e231a26b36d6dfe35a48c4464346620f8645ed0ace01ee31822b288de21"}, ] +distro = [ + {file = "distro-1.5.0-py2.py3-none-any.whl", hash = "sha256:df74eed763e18d10d0da624258524ae80486432cd17392d9c3d96f5e83cd2799"}, + {file = "distro-1.5.0.tar.gz", hash = "sha256:0e58756ae38fbd8fc3020d54badb8eae17c5b9dcbed388b17bb55b8a5928df92"}, +] entrypoints = [ {file = "entrypoints-0.3-py2.py3-none-any.whl", hash = "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19"}, {file = "entrypoints-0.3.tar.gz", hash = "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451"}, diff --git a/pyproject.toml b/pyproject.toml index 2c8e5da..dc24b75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "hyperglass" -version = "1.0.0-beta.46" +version = "1.0.0-beta.47" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = ["Matt Love "] readme = "README.md" @@ -36,6 +36,7 @@ inquirer = "^2.6.3" paramiko = "^2.7.1" gunicorn = "^20.0.4" xmltodict = "^0.12.0" +distro = "^1.5.0" [tool.poetry.dev-dependencies] bandit = "^1.6.2"