Skip to content

Commit 02fe4fc

Browse files
committed
chore(release): 3.1.1
1 parent f521013 commit 02fe4fc

File tree

7 files changed

+36
-17
lines changed

7 files changed

+36
-17
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [3.1.1](https://github.com/danobot/mqtt_payload_processor/compare/v3.1.0...v3.1.1) (2025-02-08)
6+
7+
8+
### Bug Fixes
9+
10+
* ci ([5bd23e1](https://github.com/danobot/mqtt_payload_processor/commit/5bd23e1bb7543980c8683fa2eaaf0a480ff86cc5))
11+
12+
13+
114
# Change Log
215

316
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

custom_components/processor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from importlib import import_module
88

99
_LOGGER = logging.getLogger(__name__)
10-
VERSION = '3.0.1'
10+
VERSION = '3.1.1'
1111

1212
DEPENDENCIES = ['mqtt']
1313
DOMAIN = "processor"
+18-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1-
{
2-
"domain": "processor",
3-
"name": "Message Processor Component",
4-
"documentation": "https://github.com/danobot/mqtt_payload_processor",
5-
"issue_tracker": "https://github.com/danobot/mqtt_payload_processor/issues",
6-
"dependencies": ["mqtt", "script", "automation"],
7-
"codeowners": ["@danobot"],
8-
"requirements": [],
9-
"version": "3.0.1",
10-
"iot_class": "local_push",
11-
"homeassistant": "2022.7.0"
12-
}
1+
{
2+
"domain": "processor",
3+
"name": "Message Processor Component",
4+
"documentation": "https://github.com/danobot/mqtt_payload_processor",
5+
"issue_tracker": "https://github.com/danobot/mqtt_payload_processor/issues",
6+
"dependencies": [
7+
"mqtt",
8+
"script",
9+
"automation"
10+
],
11+
"codeowners": [
12+
"@danobot"
13+
],
14+
"requirements": [],
15+
"version": "3.1.1",
16+
"iot_class": "local_push",
17+
"homeassistant": "2022.7.0"
18+
}

custom_components/processor/mqtt_code.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import homeassistant.util.uuid as uuid_util
99
from custom_components.processor.yaml_scheduler import TimeSchedule, Mapping
1010
from homeassistant.components import mqtt
11-
VERSION = '3.0.1'
11+
VERSION = '3.1.1'
1212

1313
_LOGGER = logging.getLogger(__name__)
1414

custom_components/processor/yaml_scheduler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from . import DOMAIN
88
_LOGGER = logging.getLogger(__name__)
99
from homeassistant.util import dt
10-
VERSION = '3.0.1'
10+
VERSION = '3.1.1'
1111

1212
class Scheduler:
1313

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mqtt-mqtt-payload_processor",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Custom Home Assistant component that converts MQTT message payloads to events and callback functions for consumption in automations. Can be used to assign schedule-based actions to remote controls or button wall panels.",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)