From 0df4b2a9f7546b1b41dfee66ee5a021eefd0170a Mon Sep 17 00:00:00 2001 From: Benji <46675043+BenjiU@users.noreply.github.com> Date: Mon, 22 Jul 2024 22:22:21 +0200 Subject: [PATCH] bump version 2.4.0 (#379) --- 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}