Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.3 #52

Merged
merged 4 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
# Changelog

## [1.0.2a2](https://github.com/NeonGeckoCom/skill-speed_test/tree/1.0.2a2) (2024-04-02)
## [1.0.3a1](https://github.com/NeonGeckoCom/skill-speed_test/tree/1.0.3a1) (2024-05-10)

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

**Merged pull requests:**

- Update test dependency to stable spec [\#49](https://github.com/NeonGeckoCom/skill-speed_test/pull/49) ([NeonDaniel](https://github.com/NeonDaniel))

## [1.0.2a1](https://github.com/NeonGeckoCom/skill-speed_test/tree/1.0.2a1) (2024-02-05)

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

**Merged pull requests:**

- Support ovos-utils 0.1 [\#48](https://github.com/NeonGeckoCom/skill-speed_test/pull/48) ([NeonDaniel](https://github.com/NeonDaniel))
- Remove `mycroft` imports [\#51](https://github.com/NeonGeckoCom/skill-speed_test/pull/51) ([NeonDaniel](https://github.com/NeonDaniel))



Expand Down
5 changes: 2 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
from ovos_utils.log import LOG
from ovos_utils.process_utils import RuntimeRequirements
from neon_utils.skills.neon_skill import NeonSkill

from mycroft.skills import intent_file_handler
from ovos_workshop.decorators import intent_handler


class SpeedTestSkill(NeonSkill):
Expand Down Expand Up @@ -65,7 +64,7 @@ def runtime_requirements(self):
no_network_fallback=False,
no_gui_fallback=True)

@intent_file_handler("run_speed_test.intent")
@intent_handler("run_speed_test.intent")
def handle_run_speed_test(self, message):
self.speak_dialog("start_test")
self.bus.emit(message.forward(
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ neon-utils~=1.0
speedtest-cli~=2.1
ovos-utils~=0.0, >=0.0.28
ovos-bus-client~=0.0.3
ovos-workshop~=0.0.15
1 change: 1 addition & 0 deletions skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"neon-utils~=1.0",
"ovos-bus-client~=0.0.3",
"ovos-utils~=0.0, >=0.0.28",
"ovos-workshop~=0.0.15",
"speedtest-cli~=2.1"
],
"system": {},
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.2"
__version__ = "1.0.3"
Loading