From ff12d8129e06dd08330bbbd82fe0bfab2457a6cf Mon Sep 17 00:00:00 2001 From: benjamin Date: Sat, 20 Jul 2024 22:26:01 +0200 Subject: [PATCH 1/4] bump version 2.4.0 --- CHANGELOG.md | 12 ++++++++++++ mqtt_io/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a18891..52b65484 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ Unreleased ========== - Nothing! +.v2.4.0 - 2024-07-20 +==================== +- Bump tj-actions/branch-names from 2.2 to 7.0.7 in /.github/workflows by @dependabot in https://github.com/flyte/mqtt-io/pull/339 +- # Fix for poetry/docutils related bug by @BenjiU in https://github.com/flyte/mqtt-io/pull/367 +- upgrade DHT11/DHT22 backing library by @pansila in https://github.com/flyte/mqtt-io/pull/297 +- Install gcc for slim docker to build rpi.gpio on demand by @BenjiU in https://github.com/flyte/mqtt-io/pull/368 +- Remove lint warnings from bmp085.py by @BenjiU in https://github.com/flyte/mqtt-io/pull/375 +- Add support for YF-S201 flow rate sensor by @linucks in https://github.com/flyte/mqtt-io/pull/370 +- Support for ENS160 digital multi-gas sensor with multiple IAQ data (TVOC, eCO2, AQI) by @linucks in https://github.com/flyte/mqtt-io/pull/371 +- feat: add MH-Z19 sensor module by @kleest in https://github.com/flyte/mqtt-io/pull/365 +- Add Support for Sunxi Linux Boards by @fabys77 in https://github.com/flyte/mqtt-io/pull/100 + .v2.3.0 - 2024-03-01 ==================== - 324 pinned pyyaml version incompatible with latest cython 300 by @BenjiU in #325 diff --git a/mqtt_io/__init__.py b/mqtt_io/__init__.py index afc9c0ee..0aabc8bf 100644 --- a/mqtt_io/__init__.py +++ b/mqtt_io/__init__.py @@ -2,4 +2,4 @@ Top level of MQTT IO package. """ -VERSION = "2.3.0" +VERSION = "2.4.0" diff --git a/pyproject.toml b/pyproject.toml index 349b724a..ea06c8af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mqtt-io" -version = "2.3.0" +version = "2.4.0" description = "Expose GPIO modules (Raspberry Pi, Beaglebone, PCF8754, PiFace2 etc.), digital sensors (LM75 etc.) and serial streams to an MQTT server for remote control and monitoring." readme = "README.md" authors = ["Ellis Percival "] diff --git a/setup.cfg b/setup.cfg index 3690d97a..b2e03efc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.0 +current_version = 2.4.0 commit = True tag = True tag_name = {new_version} From 99a88ee1cca209a15e65d664b62d9a1e9b32a543 Mon Sep 17 00:00:00 2001 From: benjamin Date: Mon, 22 Jul 2024 22:52:21 +0200 Subject: [PATCH 2/4] Bump version to 2.4.0 --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index b2e03efc..83cd5560 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,5 @@ tag_name = {new_version} message = Bump version to {new_version} [bumpversion:file:pyproject.toml] + [bumpversion:file:mqtt_io/__init__.py] From f825c6f224aeebf6f9c84b8e0d201baab4ba713f Mon Sep 17 00:00:00 2001 From: benjamin Date: Mon, 22 Jul 2024 22:54:34 +0200 Subject: [PATCH 3/4] Bump version to 2.4.1 --- mqtt_io/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mqtt_io/__init__.py b/mqtt_io/__init__.py index 0aabc8bf..8fe5089d 100644 --- a/mqtt_io/__init__.py +++ b/mqtt_io/__init__.py @@ -2,4 +2,4 @@ Top level of MQTT IO package. """ -VERSION = "2.4.0" +VERSION = "2.4.1" diff --git a/pyproject.toml b/pyproject.toml index ea06c8af..558a6f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mqtt-io" -version = "2.4.0" +version = "2.4.1" description = "Expose GPIO modules (Raspberry Pi, Beaglebone, PCF8754, PiFace2 etc.), digital sensors (LM75 etc.) and serial streams to an MQTT server for remote control and monitoring." readme = "README.md" authors = ["Ellis Percival "] diff --git a/setup.cfg b/setup.cfg index 83cd5560..d830fd97 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.0 +current_version = 2.4.1 commit = True tag = True tag_name = {new_version} From 5c82b1f0018434f03dea66a2422f619c31f3bd89 Mon Sep 17 00:00:00 2001 From: benjamin Date: Thu, 25 Jul 2024 15:57:40 +0200 Subject: [PATCH 4/4] debug output --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c04ed06d..07c95398 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,8 @@ jobs: - name: Install dependencies and generate docs run: | pip install poetry + ls + git status poetry install poetry run python docs_src/generate_docs.py