diff --git a/README.md b/README.md index 98d6837..7bfa8a7 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,9 @@ code of these components, to an e-mail address on the Compal site, have not been Changelog --------- +### 0.3.1: + * [Fix](https://github.com/ties/compal_CH7465LG_py/pull/26) for [python url parsing change](https://bugs.python.org/issue42967) by @Kiskae. + ### 0.3.0: * Guest network settings added by @frimtec. diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 20b30d3..323241e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,10 +19,13 @@ resources: containers: - container: py37 image: python:3.7 - + - container: py38 image: python:3.8 - + + - container: py39 + image: python:3.9 + stages: - stage: 'Test' jobs: @@ -36,6 +39,8 @@ stages: containerResource: py37 Python38: containerResource: py38 + Python39: + containerResource: py39 container: $[ variables['containerResource']] @@ -74,8 +79,8 @@ stages: vmImage: 'ubuntu-latest' strategy: matrix: - Python37: - containerResource: py37 + Python39: + containerResource: py39 container: $[ variables['containerResource']] steps: diff --git a/setup.py b/setup.py index e6c212a..347ea77 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="compal", - version="0.3.0", + version="0.3.1", author="Ties de Kock", author_email="ties@tiesdekock.nl", description="Compal CH7465LG/Ziggo Connect Box client",