Skip to content

Commit

Permalink
Merge pull request #297 from OpenVoiceOS/release-0.8.0a1
Browse files Browse the repository at this point in the history
Release 0.8.0a1
  • Loading branch information
JarbasAl authored Jan 9, 2025
2 parents 535c7d7 + 525ebf4 commit f47fa1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
14 changes: 3 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
# Changelog

## [0.7.1a2](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.7.1a2) (2025-01-04)
## [0.8.0a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.8.0a1) (2025-01-09)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.7.1a1...0.7.1a2)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.7.1...0.8.0a1)

**Merged pull requests:**

- fix log spam [\#293](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/293) ([JarbasAl](https://github.com/JarbasAl))

## [0.7.1a1](https://github.com/OpenVoiceOS/ovos-plugin-manager/tree/0.7.1a1) (2025-01-04)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-plugin-manager/compare/0.7.0...0.7.1a1)

**Merged pull requests:**

- chore: add warnings [\#291](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/291) ([JarbasAl](https://github.com/JarbasAl))
- feat:allow pipelines to return a modified session [\#296](https://github.com/OpenVoiceOS/ovos-plugin-manager/pull/296) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
3 changes: 3 additions & 0 deletions ovos_plugin_manager/templates/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from ovos_bus_client.client import MessageBusClient
from ovos_bus_client.message import Message
from ovos_bus_client.session import Session
from ovos_utils.fakebus import FakeBus

# LEGACY: Intent match response tuple, ovos-core~=0.2 expects PipelinePlugin to return this data structure
Expand Down Expand Up @@ -34,6 +35,7 @@ class IntentHandlerMatch:
match_data: Optional[Dict] = None
skill_id: Optional[str] = None
utterance: Optional[str] = None
updated_session: Optional[Session] = None


@dataclass
Expand All @@ -52,6 +54,7 @@ class PipelineMatch(IntentHandlerMatch):
match_data: Optional[Dict] = None
skill_id: Optional[str] = None
utterance: Optional[str] = None
updated_session: Optional[Session] = None
match_type: bool = True # compat


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 = 7
VERSION_BUILD = 1
VERSION_ALPHA = 0
VERSION_MINOR = 8
VERSION_BUILD = 0
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit f47fa1a

Please sign in to comment.