Skip to content

Commit cce1e76

Browse files
authored
Merge pull request #93 from OpenVoiceOS/release-1.1.15a1
Release 1.1.15a1
2 parents dadabe2 + 015f42d commit cce1e76

File tree

4 files changed

+10
-35
lines changed

4 files changed

+10
-35
lines changed

CHANGELOG.md

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,12 @@
11
# Changelog
22

3-
## [1.1.14a4](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.14a4) (2025-06-07)
3+
## [1.1.15a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.15a1) (2025-06-08)
44

5-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.14a3...1.1.14a4)
5+
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.14...1.1.15a1)
66

77
**Merged pull requests:**
88

9-
- nl-nl translation [\#90](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/90) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
10-
- nl-nl translation [\#89](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/89) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
11-
12-
## [1.1.14a3](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.14a3) (2025-06-07)
13-
14-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.14a2...1.1.14a3)
15-
16-
**Merged pull requests:**
17-
18-
- nl-nl translation [\#87](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/87) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
19-
20-
## [1.1.14a2](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.14a2) (2025-06-05)
21-
22-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.14a1...1.1.14a2)
23-
24-
**Merged pull requests:**
25-
26-
- gl/translate [\#85](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/85) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
27-
28-
## [1.1.14a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.14a1) (2025-06-04)
29-
30-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.13...1.1.14a1)
31-
32-
**Merged pull requests:**
33-
34-
- gl/translate [\#83](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/83) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
9+
- fix: compatibility with ovos-workshop 7.X.X and ovos-plugin-manager 1.X.X [\#92](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/92) ([JarbasAl](https://github.com/JarbasAl))
3510

3611

3712

ocp_pipeline/opm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from ovos_bus_client.session import SessionManager
1515
from ovos_config import Configuration
1616
from ovos_plugin_manager.ocp import available_extractors
17-
from ovos_plugin_manager.templates.pipeline import IntentHandlerMatch, ConfidenceMatcherPipeline, PipelineStageMatcher
17+
from ovos_plugin_manager.templates.pipeline import IntentHandlerMatch, ConfidenceMatcherPipeline, PipelinePlugin
1818
from ovos_utils.lang import standardize_lang_tag, get_language_dir
1919
from ovos_utils.log import LOG, deprecated, log_deprecation
2020
from ovos_utils.fakebus import FakeBus
@@ -1208,12 +1208,12 @@ def match_legacy(self, utterances: List[str], lang: str, message: Message = None
12081208
return MycroftCPSLegacyPipeline(self.bus, self.config).match(utterances, lang, message)
12091209

12101210

1211-
class MycroftCPSLegacyPipeline(PipelineStageMatcher, OVOSAbstractApplication):
1211+
class MycroftCPSLegacyPipeline(PipelinePlugin, OVOSAbstractApplication):
12121212
def __init__(self, bus: Optional[Union[MessageBusClient, FakeBus]] = None,
12131213
config: Optional[Dict] = None):
12141214
OVOSAbstractApplication.__init__(self, bus=bus or FakeBus(),
12151215
skill_id=OCP_ID, resources_dir=f"{dirname(__file__)}")
1216-
PipelineStageMatcher.__init__(self, bus, config)
1216+
PipelinePlugin.__init__(self, bus, config)
12171217
self.mycroft_cps = LegacyCommonPlay(self.bus)
12181218
OCPPipelineMatcher.load_intent_files()
12191219
self.add_event("ocp:legacy_cps", self.handle_legacy_cps, is_intent=True)

ocp_pipeline/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# START_VERSION_BLOCK
22
VERSION_MAJOR = 1
33
VERSION_MINOR = 1
4-
VERSION_BUILD = 14
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 15
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ovos-workshop>=0.1.7,<4.0.0
1+
ovos-workshop>=0.1.7,<8.0.0
22
ovos-classifiers
33
ovos-utils[extras]>=0.3.5,<1.0.0
4-
ovos-plugin-manager>=0.5.0,<1.0.0
4+
ovos-plugin-manager>=1.0.0,<2.0.0

0 commit comments

Comments
 (0)