From db06e4c9e743259db790a26216870411c3609cbf Mon Sep 17 00:00:00 2001 From: Matthieu Bourgain Date: Fri, 28 Jul 2023 18:58:57 +0200 Subject: [PATCH] fix missing X8D and X010V in extensions --- CHANGELOG.md | 4 ++++ pypx800v5/__init__.py | 1 + pypx800v5/const.py | 2 ++ setup.py | 2 +- 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf61893..53cb725 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.13.4 + +- Fix missing X8D and X010V in extensions + ## 0.13.3 - Fix X4FP mode diff --git a/pypx800v5/__init__.py b/pypx800v5/__init__.py index 13e0be8..c7c983e 100644 --- a/pypx800v5/__init__.py +++ b/pypx800v5/__init__.py @@ -6,6 +6,7 @@ API_CONFIG_NAME, API_CONFIG_PARAMS, API_CONFIG_TYPE, + EXT_X010V, EXT_X4FP, EXT_X4VR, EXT_X8D, diff --git a/pypx800v5/const.py b/pypx800v5/const.py index 1bf7950..6a78c7c 100644 --- a/pypx800v5/const.py +++ b/pypx800v5/const.py @@ -27,11 +27,13 @@ EXTENSIONS = [ EXT_XTHL, EXT_X4FP, + EXT_X8D, EXT_X24D, EXT_X4VR, EXT_XDIMMER, EXT_X8R, EXT_XPWM, + EXT_X010V, ] # Objects diff --git a/setup.py b/setup.py index a0beec6..29e9eb0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pypx800v5", - version="0.13.3", + version="0.13.4", author="Aohzan", author_email="aohzan@gmail.com", description="Control the IPX800V5 and its extensions.",