Skip to content

Commit 9fc40d8

Browse files
authored
353 release version 230 (#354)
* Update 2.3.0 release notes
1 parent 0d1964d commit 9fc40d8

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ Unreleased
22
==========
33
- Nothing!
44

5+
.v2.3.0 - 2024-03-01
6+
====================
7+
- 324 pinned pyyaml version incompatible with latest cython 300 by @BenjiU in #325
8+
- fix pipeline for tagging by @BenjiU in #323
9+
- pin pyyaml to v6.0.1 by @BenjiU in #326
10+
- Add new module for sensor adxl345 by @birdie1 in #223
11+
- Sensor INA219: Use optional i2c_bus_num by @mschlenstedt in #328
12+
- Update ads1x15.py by @maxthebuch in #329
13+
- repeat subscribe when reconnected to MQTT broker by @JohannesHennecke in #337
14+
- Fix non-unique identifiers reporting to HA by @dolai1 in #345
15+
- docker: use a "slim" base image by @chatziko in #342
16+
- Fix applying mqtt.reconnect_count by reordering except clauses by @zzeekk in #331
17+
- Add PMS5003 Particulate Sensor by @johnwang16 in #346
18+
- gpiod: enable pullup/pulldown by @chatziko in #341
19+
- docker: slim image, use rustup, build deps only on armv7 by @chatziko in #352
20+
521
.v2.2.9d - 2023-07-18
622
====================
723
- new sensors

mqtt_io/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Top level of MQTT IO package.
33
"""
44

5-
VERSION = "2.2.9"
5+
VERSION = "2.3.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mqtt-io"
3-
version = "2.2.9"
3+
version = "2.3.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 <[email protected]>"]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.9
2+
current_version = 2.3.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

0 commit comments

Comments
 (0)