Skip to content

Commit b6c68fb

Browse files
author
Daniel Mason
committed
ci: version bump
1 parent dd6b2bc commit b6c68fb

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

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 = '2.3.1'
10+
VERSION = '3.0.1'
1111

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

custom_components/processor/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": ["mqtt", "script", "automation"],
77
"codeowners": ["@danobot"],
88
"requirements": [],
9-
"version": "3.0.0",
9+
"version": "3.0.1",
1010
"iot_class": "local_push",
1111
"homeassistant": "2022.7.0"
1212
}

custom_components/processor/mqtt_code.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +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'
1112

1213
_LOGGER = logging.getLogger(__name__)
1314

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='2.3.1'
10+
VERSION='3.0.1'
1111

1212
class Scheduler:
1313

0 commit comments

Comments
 (0)