Skip to content

Commit

Permalink
Merge pull request #266 from OpenVoiceOS/release-0.3.1a1
Browse files Browse the repository at this point in the history
Release 0.3.1a1
  • Loading branch information
JarbasAl authored Sep 11, 2024
2 parents 62a052b + 293f3ad commit cfebfd6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Changelog

## [0.3.0a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.3.0a1) (2024-09-11)
## [0.3.1a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.3.1a1) (2024-09-11)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.2.0...0.3.0a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.3.0...0.3.1a1)

**Merged pull requests:**

- feat:fallback\_plugins [\#263](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/263) ([JarbasAl](https://github.com/JarbasAl))
- chore:semver\_versioning [\#262](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/262) ([JarbasAl](https://github.com/JarbasAl))
- fix:default\_config [\#265](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/265) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
1 change: 1 addition & 0 deletions ovos_plugin_manager/g2p.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def create(cls, config=None):
"module": <engine_name>
}
"""
config = config or Configuration()
if "g2p" in config:
config = config["g2p"]
g2p_config = get_g2p_config(config)
Expand Down
1 change: 1 addition & 0 deletions ovos_plugin_manager/microphone.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def create(cls, config=None):
"module": <engine_name>
}
"""
config = config or Configuration()
if "microphone" in config:
config = config["microphone"]
microphone_config = get_microphone_config(config)
Expand Down
1 change: 1 addition & 0 deletions ovos_plugin_manager/vad.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def create(cls, config=None):
"module": <engine_name>
}
"""
config = config or Configuration()
if "listener" in config:
config = config["listener"]
if "VAD" in config:
Expand Down
6 changes: 3 additions & 3 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 = 3
VERSION_BUILD = 0
VERSION_ALPHA = 0
# END_VERSION_BLOCK
VERSION_BUILD = 1
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit cfebfd6

Please sign in to comment.