diff --git a/VERSION b/VERSION index 4a36342..cb2b00e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.0.1 diff --git a/debian/changelog b/debian/changelog index f34e75f..0e373a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sensorpajen (3.0.1) stable; urgency=medium + + * Fix Debian runtime dependencies for the TUI (ensure Textual is installed) + + -- Fredrik Mon, 29 Dec 2025 12:30:00 +0100 + sensorpajen (3.0.0) stable; urgency=medium * Production release v3.0.0 diff --git a/pyproject.toml b/pyproject.toml index 4bfef94..ad69ca5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sensorpajen" -version = "3.0.0" +version = "3.0.1" description = "Bluetooth temperature sensor monitor for Xiaomi Mijia LYWSD03MMC" readme = "readme.md" requires-python = ">=3.9" diff --git a/readme.md b/readme.md index 71f2a50..f088d88 100644 --- a/readme.md +++ b/readme.md @@ -28,10 +28,10 @@ The easiest way to install on Raspberry Pi OS is using the pre-built Debian pack ```bash # Download the latest release -wget https://gitea.wahlberg.se/api/v1/repos/fredrik/sensorpajen/releases/download/v3.0.0/sensorpajen_3.0.0_all.deb +wget https://gitea.wahlberg.se/api/v1/repos/fredrik/sensorpajen/releases/download/v3.0.1/sensorpajen_3.0.1_all.deb # Install -sudo dpkg -i sensorpajen_3.0.0_all.deb +sudo dpkg -i sensorpajen_3.0.1_all.deb # Configure sudo nano /etc/sensorpajen/sensorpajen.env # Edit MQTT settings diff --git a/requirements.txt b/requirements.txt index 696a541..847a514 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ pybluez bluepy paho-mqtt +textual>=0.40.0 diff --git a/src/sensorpajen/__init__.py b/src/sensorpajen/__init__.py index 9560109..1c58b37 100644 --- a/src/sensorpajen/__init__.py +++ b/src/sensorpajen/__init__.py @@ -5,6 +5,6 @@ Monitors Xiaomi Mijia LYWSD03MMC Bluetooth temperature sensors and publishes data to MQTT broker. """ -__version__ = "3.0.0" +__version__ = "3.0.1" __author__ = "Fredrik" __license__ = "MIT"