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 .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
CARGO_TERM_COLOR: always
WASI_SDK_VERSION: 33
WASI_SDK_VERSION: 34

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

env:
CARGO_TERM_COLOR: always
WASI_SDK_VERSION: 33
WASI_SDK_VERSION: 34

jobs:
linux:
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use {
const DEBUG_RUNTIME: bool = false;
const STRIP_RUNTIME: bool = !DEBUG_RUNTIME;
const ZSTD_COMPRESSION_LEVEL: i32 = if DEBUG_RUNTIME { 0 } else { 19 };
const DEFAULT_SDK_VERSION: &str = "33";
const DEFAULT_SDK_VERSION: &str = "34";

// SQLite version to build - 3.51.2 (latest as of Jan 2026)
const SQLITE_VERSION: &str = "3510200";
Expand Down
Loading