You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add matrix strategy to test workflow (stable + 1.88.0)
- Update rust-version in Cargo.toml to 1.88
- Update all docs referencing minimum Rust version
- Update actions/checkout to @v6 in GitHub workflows
Compare the extracted version against the minimum (1.85 for Rust, 14 for Postgres) by splitting on `.` and comparing numerically. For skill-level checks, a string prefix comparison (`[[ "$PG_VER" < "14" ]]`) is adequate because major versions are single or double digits.
99
+
Compare the extracted version against the minimum (1.88 for Rust, 14 for Postgres) by splitting on `.` and comparing numerically. For skill-level checks, a string prefix comparison (`[[ "$PG_VER" < "14" ]]`) is adequate because major versions are single or double digits.
100
100
101
101
## Rust version upgrade path
102
102
103
-
If Rust is installed via rustup and `rustc --version` reports older than 1.85, the fix is:
103
+
If Rust is installed via rustup and `rustc --version` reports older than 1.88, the fix is:
Copy file name to clipboardExpand all lines: .agents/skills/extenddb/references/setup/03-build-stage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,4 +59,4 @@ This should print the extenddb version string. If it does not, the build failed
59
59
cargo build --release --verbose
60
60
```
61
61
62
-
Common causes of silent build failure are a missing system library (for example, `libpq-dev` or `openssl-dev` on Linux), a Rust toolchain older than 1.85, or a disk full condition under `target/`. The verbose output names the failing crate and the missing dependency.
62
+
Common causes of silent build failure are a missing system library (for example, `libpq-dev` or `openssl-dev` on Linux), a Rust toolchain older than 1.88, or a disk full condition under `target/`. The verbose output names the failing crate and the missing dependency.
0 commit comments