From ad59fb89d75d12312a62ab76cbf78f656a7f5f5e Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Sat, 5 Oct 2024 23:21:58 -0400 Subject: [PATCH] Bump version Updates sagemcom_api dependency to version 1.1.0 Corrects url encoding for set_value_by_xpath --- README.md | 4 ++-- requirements.txt | 2 +- setup.cfg | 4 ++-- xmo/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 366aeaa..2d2e614 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ python3 -m build ```bash python3 -m venv .venv source .venv/bin/activate -pip install dist/xmo_remote_client-0.0.5-py3-none-any.whl +pip install dist/xmo_remote_client-0.0.6-py3-none-any.whl deactivate ``` @@ -27,7 +27,7 @@ deactivate ```bash python3 -m venv .venv source .venv/bin/activate -pip install https://github.com/up-n-atom/sagemcom-modem-scripts/releases/download/v0.0.5/xmo_remote_client-0.0.5-py3-none-any.whl +pip install https://github.com/up-n-atom/sagemcom-modem-scripts/releases/download/v0.0.6/xmo_remote_client-0.0.6-py3-none-any.whl deactivate ``` diff --git a/requirements.txt b/requirements.txt index 54dd760..a609ccf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ anyio asyncclick -git+https://github.com/djGrrr/python-sagemcom-api.git@master#egg=sagemcom_api +sagemcom_api==1.1.0 pyaml \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 9e78301..4ec9027 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = xmo-remote-client -version = 0.0.5 +version = 0.0.6 [options] packages = @@ -8,7 +8,7 @@ packages = install_requires = anyio asyncclick - sagemcom_api==1.0.8 + sagemcom_api==1.1.0 pyaml [options.entry_points] diff --git a/xmo/__init__.py b/xmo/__init__.py index eead319..fa9c4ec 100644 --- a/xmo/__init__.py +++ b/xmo/__init__.py @@ -1 +1 @@ -__version__ = '0.0.5' +__version__ = '0.0.6'