File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 2626 run : poetry run mypy --show-error-codes --strict --no-warn-unused-ignores mqtt_io
2727 - name : Test with behave
2828 run : poetry run behave -t ~skip mqtt_io/tests/features
29+
2930 publish :
3031 name : Publish to PyPI
3132 if : github.event_name == 'release' && github.event.action == 'created'
Original file line number Diff line number Diff line change @@ -2,6 +2,24 @@ Unreleased
22==========
33- Nothing!
44
5+ .v2.2.9d - 2023-07-18
6+ ====================
7+ - new sensors
8+ - fix for reconnection problem
9+
10+ .v2.2.8 - 2023-01-19
11+ ====================
12+ - Fix for #280 by @rlehfeld in #281
13+ - Fix reconnects_remaining referenced before assignment by @SamLeatherdale in #274
14+ - Only create one instance of sensor_module for ADS1x15 by @shbatm in #286
15+ - PN532 NFC/RFID reader implementation by @vytautassurvila in #269
16+ - Update README.md by @OzGav in #264
17+ - FIX OrangePi module by @neatherweb in #285
18+ - New DockerPi 4 Channel Relay GPIO module by @claudegel in #246
19+ - Digital Output: fix initial state inconsistency by @hacker-cb in #238
20+ - Add module mcp3xxx by @koleo9am in #227
21+ - Always remove finished transient_tasks. by @gmsoft-tuxicoman in #301
22+
523.v2.2.7 - 2022-07-07
624====================
725- Fix some minor pylint issues and silence some others.
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ WORKDIR /home/mqtt_io
4141
4242COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv
4343COPY --from=requirements /requirements.txt ./
44+ RUN venv/bin/python -m pip install --upgrade pip
4445RUN venv/bin/pip install -r requirements.txt
4546
4647COPY --chown=mqtt_io mqtt_io mqtt_io
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ documentation = "https://flyte.github.io/mqtt-io/"
99
1010[tool .poetry .dependencies ]
1111python = " ^3.6"
12- PyYAML = " ^5.4 "
12+ PyYAML = " ^6.0 "
1313Cerberus = " ^1.3.2"
1414typing-extensions = " ^3.7.4"
1515dataclasses = { version = " ^0.8" , python = " >=3.6,<3.7" }
You can’t perform that action at this time.
0 commit comments