Bump to 0.10.2, update security, update pypi docs

This commit is contained in:
Shaun Eccles-Smith 2021-03-14 23:39:21 +11:00
parent 406fca81bd
commit dfdc6096a8
4 changed files with 7 additions and 6 deletions

View File

@ -8,8 +8,8 @@ Our pip package will be rebuilt automatically when new releases are pushed - we
| Version | Supported |
| ------- | ------------------ |
| 0.9.2 | :white_check_mark: |
| <0.9.2 | :x: |
| 0.10.2 | :white_check_mark: |
| <0.10.2 | :x: |
## Reporting a Vulnerability

View File

@ -16,7 +16,7 @@ REQUIRED_PYTHON_STRING = ">={}.{}.{}".format(
MAJOR_VERSION = 0
MINOR_VERSION = 10
MICRO_VERSION = 1
MICRO_VERSION = 2
POST = 0
DEV = 0
PROJECT_VERSION = "{}.{}.{}".format(

View File

@ -192,8 +192,8 @@ class E131Device(Device):
try:
self._sacn.flush()
except AttributeError:
_LOGGER.critical(
"The wheels fell off the sACN thread. Restarting it."
_LOGGER.info(
"Attempted to start sACN thread prior to sACN activating. Restarting sACN thread."
)
self.activate

View File

@ -4,6 +4,7 @@ from setuptools import setup
import ledfx.consts as const
PROJECT_DOCS = "https://ledfx.readthedocs.io"
PROJECT_PACKAGE_NAME = "ledfx"
PROJECT_VERSION = const.PROJECT_VERSION
PROJECT_LICENSE = "The MIT License"
@ -49,7 +50,7 @@ setup(
maintainer_email=PROJECT_MAINTAINER_EMAIL,
url=PROJECT_URL,
project_urls={
"Documentation": "https://ledfx.readthedocs.io/en/master/index.html",
"Documentation": "https://ledfx.readthedocs.io/",
"Website": "https://ledfx.app",
"Source": "https://github.com/LedFx/LedFx",
"Discord": "https://discord.gg/PqXMuthSNx",