Skip to content

Commit

Permalink
Merge pull request #13 from OpenVoiceOS/release-0.0.5a1
Browse files Browse the repository at this point in the history
Release 0.0.5a1
  • Loading branch information
JarbasAl authored Oct 17, 2024
2 parents 99e169e + aa230ae commit fb5c181
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.0.4a1](https://github.com/OpenVoiceOS/ovos-skill-wordnet/tree/0.0.4a1) (2024-10-15)
## [0.0.5a1](https://github.com/OpenVoiceOS/ovos-skill-wordnet/tree/0.0.5a1) (2024-10-17)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-wordnet/compare/0.0.3...0.0.4a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-wordnet/compare/0.0.4...0.0.5a1)

**Merged pull requests:**

- fix:requirements.txt [\#10](https://github.com/OpenVoiceOS/ovos-skill-wordnet/pull/10) ([JarbasAl](https://github.com/JarbasAl))
- fix:ensure\_nltk\_resources [\#12](https://github.com/OpenVoiceOS/ovos-skill-wordnet/pull/12) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
4 changes: 3 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@
# limitations under the License.
#
import random

import nltk
from ovos_classifiers.opm.nltk import WordnetSolverPlugin
from ovos_workshop.decorators import intent_handler
from ovos_workshop.skills.common_query_skill import CommonQuerySkill, CQSMatchLevel


class WordnetSkill(CommonQuerySkill):
def initialize(self):
nltk.download('punkt_tab')
nltk.download('averaged_perceptron_tagger_eng')
self.wordnet = WordnetSolverPlugin()

# intents
Expand Down
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 0
VERSION_BUILD = 4
VERSION_ALPHA = 0
VERSION_BUILD = 5
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit fb5c181

Please sign in to comment.