Skip to content

Commit 0df4b2a

Browse files
authored
bump version 2.4.0 (#379)
1 parent 8c5ecec commit 0df4b2a

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ Unreleased
22
==========
33
- Nothing!
44

5+
.v2.4.0 - 2024-07-20
6+
====================
7+
- 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
8+
- # Fix for poetry/docutils related bug by @BenjiU in https://github.com/flyte/mqtt-io/pull/367
9+
- upgrade DHT11/DHT22 backing library by @pansila in https://github.com/flyte/mqtt-io/pull/297
10+
- Install gcc for slim docker to build rpi.gpio on demand by @BenjiU in https://github.com/flyte/mqtt-io/pull/368
11+
- Remove lint warnings from bmp085.py by @BenjiU in https://github.com/flyte/mqtt-io/pull/375
12+
- Add support for YF-S201 flow rate sensor by @linucks in https://github.com/flyte/mqtt-io/pull/370
13+
- 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
14+
- feat: add MH-Z19 sensor module by @kleest in https://github.com/flyte/mqtt-io/pull/365
15+
- Add Support for Sunxi Linux Boards by @fabys77 in https://github.com/flyte/mqtt-io/pull/100
16+
517
.v2.3.0 - 2024-03-01
618
====================
719
- 324 pinned pyyaml version incompatible with latest cython 300 by @BenjiU in #325

mqtt_io/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Top level of MQTT IO package.
33
"""
44

5-
VERSION = "2.3.0"
5+
VERSION = "2.4.0"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mqtt-io"
3-
version = "2.3.0"
3+
version = "2.4.0"
44
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."
55
readme = "README.md"
66
authors = ["Ellis Percival <mqtt-io@failcode.co.uk>"]

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.3.0
2+
current_version = 2.4.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

0 commit comments

Comments
 (0)