-
Notifications
You must be signed in to change notification settings - Fork 168
Update duckdb-rs to DuckDB v1.0.0 #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
9bda125
dbf06e7
9aa955e
c44bc24
2b31cb2
9f69269
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "0.10.2" | ||
version = "1.0.0" | ||
authors = ["wangfenjin <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/wangfenjin/duckdb-rs" | ||
|
@@ -19,8 +19,8 @@ license = "MIT" | |
categories = ["database"] | ||
|
||
[workspace.dependencies] | ||
duckdb = { version = "0.10.2", path = "crates/duckdb" } | ||
libduckdb-sys = { version = "0.10.2", path = "crates/libduckdb-sys" } | ||
duckdb = { version = "1.0.0", path = "crates/duckdb" } | ||
libduckdb-sys = { version = "1.0.0", path = "crates/libduckdb-sys" } | ||
duckdb-loadable-macros = { version = "0.1.1", path = "crates/duckdb-loadable-macros" } | ||
autocfg = "1.0" | ||
bindgen = { version = "0.69", default-features = false } | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||
[package] | ||||||
name = "libduckdb-sys" | ||||||
version = "0.10.2" | ||||||
version = "1.0.0" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment, could share the version from the root manifest.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When i tried this previously it didnt work due to the "publish crates" CI job not understanding workspace properties. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://github.com/duckdb/duckdb-rs/actions/runs/9369017132/job/25793098113 I ended up updating the action anyway so it might be fixed now idk. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Maxxen |
||||||
authors.workspace = true | ||||||
edition.workspace = true | ||||||
license.workspace = true | ||||||
|
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
duckdb
andlibduckdb-sys
share the same version, this can simply be defined in the root manifest.