Skip to content

Commit e9f65a2

Browse files
chore: bump all extensions to version 1.0.7
ci: fix sha256 checksum on macOS (use shasum -a 256)
1 parent f677b6a commit e9f65a2

7 files changed

Lines changed: 11 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,11 @@ jobs:
118118
if: startsWith(github.ref, 'refs/tags/') && runner.os != 'Windows'
119119
shell: bash
120120
run: |
121-
sha256sum "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
121+
if command -v sha256sum &> /dev/null; then
122+
sha256sum "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
123+
else
124+
shasum -a 256 "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
125+
fi
122126
cat "${{ env.ZIP_NAME }}.sha256"
123127
124128
- name: Generate checksum (Windows)

extensions/can-bus-parser/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "can-bus-parser",
33
"name": "CAN Bus Parser",
44
"description": "Loads a DBC file and parses CAN frames into signal maps",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "parser",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/csv-loader/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "csv-loader",
33
"name": "CSV Loader",
44
"description": "Loads CSV files and exposes column names",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "data_loader",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/fft-toolbox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "fft-toolbox",
33
"name": "FFT Toolbox",
44
"description": "Computes FFT over sample vectors with configurable window functions",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "toolbox",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/mcap-loader/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "mcap-loader",
33
"name": "MCAP Loader",
44
"description": "Opens MCAP files and lists available channels",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "data_loader",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/ros-bundle/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "ros-bundle",
33
"name": "ROS Bundle",
44
"description": "Meta-extension that groups ROS-related plugins and reports availability",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "toolbox",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/ros2-streaming/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "ros2-streaming",
33
"name": "ROS 2 Streaming",
44
"description": "Connects to a ROS 2 host and lists available topics",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"category": "data_streamer",
77
"min_plotjuggler_version": "4.0.0"
88
}

0 commit comments

Comments
 (0)