Skip to content
Draft
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
3 changes: 2 additions & 1 deletion core/services/ardupilot_manager/mavlink_proxy/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ async def serial_test_mavlink_server(
mavlink_server = MAVLinkServer()
mavlink_server.log_path = "./logs"
assert mavlink_server.name() == "MAVLink-Server", "Name does not match."
assert re.search(r"\d+.\d+.\d+", str(mavlink_server.version())) is not None, "Version does not follow pattern."
# Experimental tags (e.g. wip4d) are not semver; still require a non-empty version string.
assert mavlink_server.version(), "Version is missing."

allowed_output_types = [
EndpointType.UDPServer,
Expand Down
4 changes: 2 additions & 2 deletions core/tools/mavlink_server/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# Immediately exit on errors
set -e

VERSION="0.9.0"
VERSION="wip4d"
PROJECT_NAME="mavlink-server"
REPOSITORY_ORG="bluerobotics"
REPOSITORY_ORG="joaoantoniocardoso"
REPOSITORY_NAME="$PROJECT_NAME"
REPOSITORY_URL="https://github.com/$REPOSITORY_ORG/$REPOSITORY_NAME"

Expand Down
4 changes: 2 additions & 2 deletions core/tools/recorder/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# Immediately exit on errors
set -e

VERSION="0.0.5"
VERSION="camera_recording_gate"
PROJECT_NAME="blueos-recorder"
REPOSITORY_ORG="bluerobotics"
REPOSITORY_ORG="joaoantoniocardoso"
REPOSITORY_NAME="$PROJECT_NAME"
REPOSITORY_URL="https://github.com/$REPOSITORY_ORG/$REPOSITORY_NAME"

Expand Down