Skip to content
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
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ vars:
GOIMPORTS_VERSION: v0.29.0
DPRINT_VERSION: 0.48.0
EXAMPLE_VERSION: "0.6.0"
RUNNER_VERSION: "0.6.0"
RUNNER_VERSION: "0.6.1"
VERSION: # if version is not passed we hack the semver by encoding the commit as pre-release
sh: echo "${VERSION:-0.0.0-$(git rev-parse --short HEAD)}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ bricks:
mount_devices_into_container: false
ports: []
category: audio
required_devices:
- speaker
- id: arduino:image_classification
name: Image Classification
description: "Brick for image classification using a pre-trained model. It processes\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ bricks:
mount_devices_into_container: false
ports: []
category: audio
required_devices:
- speaker
- id: arduino:image_classification
name: Image Classification
description: "Brick for image classification using a pre-trained model. It processes\
Expand Down
2 changes: 1 addition & 1 deletion internal/orchestrator/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
)

// runnerVersion do not edit, this is generate with `task generate:assets`
var runnerVersion = "0.6.0"
var runnerVersion = "0.6.1"

type Configuration struct {
appsDir *paths.Path
Expand Down