Skip to content

Commit c295020

Browse files
committed
chore(release): 3.1.2
1 parent ea29b39 commit c295020

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
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.2](https://github.com/danobot/mqtt_payload_processor/compare/v3.1.1...v3.1.2) (2025-02-08)
6+
7+
8+
### Bug Fixes
9+
10+
* package ([393568e](https://github.com/danobot/mqtt_payload_processor/commit/393568eb1ce0e918f500ef91380e8e39e08c7935))
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.1.1'
10+
VERSION = '3.1.2'
1111

1212
DEPENDENCIES = ['mqtt']
1313
DOMAIN = "processor"

custom_components/processor/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@danobot"
1313
],
1414
"requirements": [],
15-
"version": "3.1.1",
15+
"version": "3.1.2",
1616
"iot_class": "local_push",
1717
"homeassistant": "2022.7.0"
1818
}

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.1.1'
11+
VERSION = '3.1.2'
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.1.1'
10+
VERSION = '3.1.2'
1111

1212
class Scheduler:
1313

package-lock.json

+2-2
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-payload-processor",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
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)