python-openevse-http 0.1.85__tar.gz → 0.1.86__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python_openevse_http
3
- Version: 0.1.85
3
+ Version: 0.1.86
4
4
  Summary: Python wrapper for OpenEVSE HTTP API
5
5
  Home-page: https://github.com/firstof9/python-openevse-http
6
6
  Author: firstof9
@@ -649,6 +649,10 @@ class OpenEVSE:
649
649
  _LOGGER.debug("Non-semver firmware version detected.")
650
650
  return False
651
651
 
652
+ def version_check(self, min_version: str, max_version: str = "") -> bool:
653
+ """Unprotected function call for version checking."""
654
+ return self._version_check(min_version=min_version, max_version=max_version)
655
+
652
656
  # HTTP Posting of grid voltage
653
657
  async def grid_voltage(self, voltage: int | None = None) -> None:
654
658
  """Send pushed sensor data to grid voltage."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-openevse-http
3
- Version: 0.1.85
3
+ Version: 0.1.86
4
4
  Summary: Python wrapper for OpenEVSE HTTP API
5
5
  Home-page: https://github.com/firstof9/python-openevse-http
6
6
  Author: firstof9
@@ -6,7 +6,7 @@ from setuptools import find_packages, setup
6
6
 
7
7
  PROJECT_DIR = Path(__file__).parent.resolve()
8
8
  README_FILE = PROJECT_DIR / "README.md"
9
- VERSION = "0.1.85"
9
+ VERSION = "0.1.86"
10
10
 
11
11
  setup(
12
12
  name="python_openevse_http",