Skip to content

Commit 7e48d2b

Browse files
authored
Release 0.2.19a1 (#54)
* fix:workshop 7.0.0 compat (#53) rename can_answer -> can_converse * Increment Version to 0.2.19a1 * Update Changelog --------- Co-authored-by: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Co-authored-by: JarbasAl <JarbasAl@users.noreply.github.com>
2 parents 0a1e07b + a572e08 commit 7e48d2b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Changelog
22

3-
## [0.2.18a1](https://github.com/OpenVoiceOS/ovos-skill-dictation/tree/0.2.18a1) (2025-06-07)
3+
## [0.2.19a1](https://github.com/OpenVoiceOS/ovos-skill-dictation/tree/0.2.19a1) (2025-06-07)
44

5-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-dictation/compare/V0.2.17...0.2.18a1)
5+
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-dictation/compare/V0.2.18...0.2.19a1)
66

77
**Merged pull requests:**
88

9-
- fix: workshop 6.0.0 compat [\#51](https://github.com/OpenVoiceOS/ovos-skill-dictation/pull/51) ([JarbasAl](https://github.com/JarbasAl))
9+
- fix:workshop 7.0.0 compat [\#53](https://github.com/OpenVoiceOS/ovos-skill-dictation/pull/53) ([JarbasAl](https://github.com/JarbasAl))
1010

11-
## [V0.2.17](https://github.com/OpenVoiceOS/ovos-skill-dictation/tree/V0.2.17) (2025-06-07)
11+
## [V0.2.18](https://github.com/OpenVoiceOS/ovos-skill-dictation/tree/V0.2.18) (2025-06-07)
1212

13-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-dictation/compare/0.2.17...V0.2.17)
13+
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-dictation/compare/0.2.18...V0.2.18)
1414

1515

1616

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def stop_session(self, session: Session):
108108
return True
109109
return False
110110

111-
def can_answer(self, message: Message) -> bool:
111+
def can_converse(self, message: Message) -> bool:
112112
"""
113113
Determines if the skill can handle the given utterances in the specified language in the converse method.
114114

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ovos-workshop>=6.0.0,<7.0.0
1+
ovos-workshop>=7.0.0,<8.0.0

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 = 0
33
VERSION_MINOR = 2
4-
VERSION_BUILD = 18
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 19
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

0 commit comments

Comments
 (0)