Browse Source

Update version.

Remove VERSION from __init__.py, as it is defined in manifest.json now.
Update version in manifest.json to match the next release.
Jason Rumney 4 years ago
parent
commit
b9bad5225e

+ 0 - 2
custom_components/tuya_local/__init__.py

@@ -30,8 +30,6 @@ from .config_flow import ConfigFlowHandler
 
 _LOGGER = logging.getLogger(__name__)
 
-VERSION = "0.1.2"
-
 CONFIG_SCHEMA = vol.Schema(
     {DOMAIN: vol.All(cv.ensure_list, [vol.Schema(individual_config_schema())])},
     extra=vol.ALLOW_EXTRA,

+ 9 - 8
custom_components/tuya_local/manifest.json

@@ -1,11 +1,12 @@
 {
-  "domain": "tuya_local",
-  "name": "Tuya based devices local control",
-  "version": "0.1.3", 
-  "documentation": "https://github.com/make-all/tuya-local",
+    "domain": "tuya_local",
+    "name": "Tuya based devices local control",
+    "version": "0.2.1", 
+    "documentation": "https://github.com/make-all/tuya-local",
     "issue_tracker": "https://github.com/make-all/tuya-local/issues",
-  "dependencies": [],
-  "codeowners": ["@make-all"],
-  "requirements": ["pycryptodome~=3.9","tinytuya~=1.2.3"],
-  "config_flow": true
+    "dependencies": [],
+    "codeowners": ["@make-all"],
+    "requirements": ["pycryptodome~=3.9","tinytuya~=1.2"],
+    "config_flow": true,
+    "iot_class": "local_polling"
 }