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
6 changes: 3 additions & 3 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ concurrency:
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5.3
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5.5
with:
ci_tools_version: v1.5.3
duckdb_version: v1.5.3
ci_tools_version: v1.5.5
duckdb_version: v1.5.5
extension_name: vortex
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64_mingw;windows_amd64;linux_amd64_musl"
extra_toolchains: "rust"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ The current release branch is configured in `.github/workflows/CherryPick.yml` v
The Vortex version is defined in `vortex-extension/Cargo.toml`. It can be a git commit, tag, branch or even a local path:

```toml
vortex-duckdb = { path = "<path/to/vortex/vortex-duckdb`>}
vortex-duckdb = { path = "<path/to/vortex/vortex-duckdb>"}
```

See the Cargo docs for [git](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories) or [path](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies) dependencies for full details.
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 463 files
2 changes: 1 addition & 1 deletion vortex-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/lib.rs"
crate-type = ["staticlib", "cdylib"]

[dependencies]
vortex-duckdb = { git = "https://github.com/vortex-data/vortex.git", rev = "b68abbb68427ed545dbd18ee3b383f78d9c34d43" }
vortex-duckdb = { git = "https://github.com/vortex-data/vortex.git", rev = "765489149270c9f2e82e742fe84d3f5575672f9d" }

# This improved build times significantly
[profile.dev.package.vortex-fastlanes]
Expand Down
Loading