diff --git a/CHANGELOG.md b/CHANGELOG.md index c8aa2c7..8b2bb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## [1.0.0a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.0.0a1) (2024-10-16) +## [1.0.1a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.0.1a1) (2024-10-18) -[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/0.1.3...1.0.0a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.0.0...1.0.1a1) -**Breaking changes:** +**Merged pull requests:** -- feat:pipeline plugin factory [\#14](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/14) ([JarbasAl](https://github.com/JarbasAl)) +- fix:method name [\#16](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/16) ([JarbasAl](https://github.com/JarbasAl)) diff --git a/ocp_pipeline/opm.py b/ocp_pipeline/opm.py index ab246c9..3304751 100644 --- a/ocp_pipeline/opm.py +++ b/ocp_pipeline/opm.py @@ -1067,7 +1067,7 @@ def match_legacy(self, utterances: List[str], lang: str, message: Message = None legacy base class at mycroft/skills/common_play_skill.py marked for removal in ovos-core 0.1.0 """ - return MycroftCPSLegacyPipeline(self.bus, self.config).match_high(utterances, lang, message) + return MycroftCPSLegacyPipeline(self.bus, self.config).match(utterances, lang, message) class MycroftCPSLegacyPipeline(PipelineStageMatcher): diff --git a/ocp_pipeline/version.py b/ocp_pipeline/version.py index a3d5a94..4aed667 100644 --- a/ocp_pipeline/version.py +++ b/ocp_pipeline/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_BUILD = 0 -VERSION_ALPHA = 0 +VERSION_BUILD = 1 +VERSION_ALPHA = 1 # END_VERSION_BLOCK