Skip to content

Commit 6e17f7e

Browse files
committed
fix: correct LA_CROSS_DATA VCD export and bump v1.1.1
1 parent 42703db commit 6e17f7e

11 files changed

Lines changed: 408 additions & 17 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ curl -fsSL https://raw.githubusercontent.com/LISTENAI/dsview-cli/refs/heads/mast
1515
Install a specific version instead:
1616

1717
```bash
18-
curl -fsSL https://raw.githubusercontent.com/LISTENAI/dsview-cli/refs/heads/master/scripts/install.sh | sh -s -- --version v0.1.0
18+
curl -fsSL https://raw.githubusercontent.com/LISTENAI/dsview-cli/refs/heads/master/scripts/install.sh | sh -s -- --version v1.1.1
1919
```
2020

2121
The installer keeps the release bundle intact so the executable can still find its sibling `runtime/` and `resources/` directories.
@@ -76,7 +76,7 @@ The CLI uses a **repository-built runtime** model:
7676

7777
Release bundle structure:
7878
```
79-
dsview-cli-v0.1.0-x86_64-unknown-linux-gnu/
79+
dsview-cli-v1.1.1-x86_64-unknown-linux-gnu/
8080
├── dsview-cli # CLI executable
8181
├── runtime/
8282
│ └── libdsview_runtime.so # Platform-specific runtime (.so/.dylib/.dll)

crates/dsview-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsview-cli"
3-
version = "0.1.0"
3+
version = "1.1.1"
44
edition = "2024"
55

66
[dependencies]

crates/dsview-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsview-core"
3-
version = "0.1.0"
3+
version = "1.1.1"
44
edition = "2024"
55

66
[dependencies]

crates/dsview-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1967,7 +1967,7 @@ mod tests {
19671967
vcd_path,
19681968
metadata_path: None,
19691969
tool_name: "dsview-cli".to_string(),
1970-
tool_version: "0.1.0".to_string(),
1970+
tool_version: "1.1.1".to_string(),
19711971
capture_started_at: UNIX_EPOCH + Duration::from_secs(1_744_018_496),
19721972
device_model: "DSLogic Plus".to_string(),
19731973
device_stable_id: "dslogic-plus".to_string(),

crates/dsview-core/tests/export_artifacts.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ fn export_request(completion: CaptureCompletion) -> CaptureExportRequest {
196196
vcd_path: PathBuf::from("/tmp/capture.vcd"),
197197
metadata_path: None,
198198
tool_name: "dsview-cli".to_string(),
199-
tool_version: "0.1.0".to_string(),
199+
tool_version: "1.1.1".to_string(),
200200
capture_started_at: UNIX_EPOCH + Duration::from_secs(1_744_018_496),
201201
device_model: "DSLogic Plus".to_string(),
202202
device_stable_id: "dslogic-plus".to_string(),
@@ -409,7 +409,7 @@ fn metadata_schema_version_is_2_when_device_option_facts_are_present() {
409409
schema_version: 2,
410410
tool: dsview_core::MetadataToolInfo {
411411
name: "dsview-cli".to_string(),
412-
version: "0.1.0".to_string(),
412+
version: "1.1.1".to_string(),
413413
},
414414
capture: dsview_core::MetadataCaptureInfo {
415415
timestamp_utc: "2025-04-07T10:14:56Z".to_string(),

crates/dsview-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsview-sys"
3-
version = "0.1.0"
3+
version = "1.1.1"
44
edition = "2024"
55
build = "build.rs"
66

0 commit comments

Comments
 (0)