Skip to content

Commit

Permalink
Merge pull request #275 from OpenVoiceOS/release-0.5.2a1
Browse files Browse the repository at this point in the history
Release 0.5.2a1
  • Loading branch information
JarbasAl authored Oct 21, 2024
2 parents d2d7646 + eb40111 commit 6b24b2d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.5.1a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.5.1a1) (2024-10-16)
## [0.5.2a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.5.2a1) (2024-10-21)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.5.0...0.5.1a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.5.1...0.5.2a1)

**Merged pull requests:**

- fix:Typing [\#272](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/272) ([JarbasAl](https://github.com/JarbasAl))
- fix:phal config loading [\#274](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/274) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
5 changes: 1 addition & 4 deletions ovos_plugin_manager/templates/phal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
from ovos_bus_client.util import get_mycroft_bus
from ovos_utils.process_utils import RuntimeRequirements

from ovos_plugin_manager.utils.config import get_plugin_config


class PHALValidator:
@staticmethod
Expand Down Expand Up @@ -37,8 +35,7 @@ def __init__(self, bus=None, name="", config=None):
super().__init__(daemon=True)
self.config_core = Configuration()
name = name or camel_case_split(self.__class__.__name__).replace(" ", "-").lower()
self.config = config or get_plugin_config(self.config_core,
"PHAL", name)
self.config = config or self.config_core.get("PHAL", {}).get(name, {})
self._mouth_events = False
self._running = False
self.bus = bus or get_mycroft_bus()
Expand Down
4 changes: 2 additions & 2 deletions ovos_plugin_manager/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 5
VERSION_BUILD = 1
VERSION_ALPHA = 0
VERSION_BUILD = 2
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 6b24b2d

Please sign in to comment.