Skip to content

Commit

Permalink
1.0.2 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel authored Jul 9, 2024
2 parents 19b49bd + a747aab commit aafb687
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Changelog

## [1.0.1a2](https://github.com/NeonGeckoCom/skill-about/tree/1.0.1a2) (2024-03-01)
## [1.0.2a2](https://github.com/NeonGeckoCom/skill-about/tree/1.0.2a2) (2024-05-10)

[Full Changelog](https://github.com/NeonGeckoCom/skill-about/compare/1.0.1a1...1.0.1a2)
[Full Changelog](https://github.com/NeonGeckoCom/skill-about/compare/1.0.2a1...1.0.2a2)

**Merged pull requests:**

- Update neon-minerva test dependency to stable spec [\#81](https://github.com/NeonGeckoCom/skill-about/pull/81) ([NeonDaniel](https://github.com/NeonDaniel))
- Remove `mycroft` imports [\#85](https://github.com/NeonGeckoCom/skill-about/pull/85) ([NeonDaniel](https://github.com/NeonDaniel))

## [1.0.1a1](https://github.com/NeonGeckoCom/skill-about/tree/1.0.1a1) (2024-02-01)
## [1.0.2a1](https://github.com/NeonGeckoCom/skill-about/tree/1.0.2a1) (2024-04-29)

[Full Changelog](https://github.com/NeonGeckoCom/skill-about/compare/1.0.0...1.0.1a1)
[Full Changelog](https://github.com/NeonGeckoCom/skill-about/compare/1.0.1...1.0.2a1)

**Merged pull requests:**

- Support ovos-utils 0.1 [\#80](https://github.com/NeonGeckoCom/skill-about/pull/80) ([NeonDaniel](https://github.com/NeonDaniel))
- feat: fix import for ovos-utils 0.1.0 [\#84](https://github.com/NeonGeckoCom/skill-about/pull/84) ([mikejgray](https://github.com/mikejgray))



Expand Down
5 changes: 2 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,14 @@
from typing import List
from random import shuffle
from os.path import isdir
from ovos_utils.skills.locations import get_skill_directories, get_plugin_skills
from ovos_plugin_manager.skills import get_skill_directories, get_plugin_skills
from ovos_utils import classproperty
from ovos_utils.process_utils import RuntimeRequirements
from neon_utils.skills.neon_skill import NeonSkill
from neon_utils.log_utils import LOG
from adapt.intent import IntentBuilder
from os import listdir, path

from mycroft.skills import skill_api_method, intent_handler
from ovos_workshop.decorators import skill_api_method, intent_handler


class AboutSkill(NeonSkill):
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
neon-utils~=1.2,>=1.2.2,!=1.9.0
ovos-utils~=0.0, >=0.0.28
ovos-utils~=0.0, >=0.0.28
ovos-workshop~=0.0.15
adapt-parser<2.0,>=0.5
4 changes: 3 additions & 1 deletion skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
"systemDeps": false,
"requirements": {
"python": [
"adapt-parser<2.0,>=0.5",
"neon-utils~=1.2,>=1.2.2,!=1.9.0",
"ovos-utils~=0.0, >=0.0.28"
"ovos-utils~=0.0, >=0.0.28",
"ovos-workshop~=0.0.15"
],
"system": {},
"skill": []
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = "1.0.1"
__version__ = "1.0.2"

0 comments on commit aafb687

Please sign in to comment.