diff --git a/Cargo.lock b/Cargo.lock index 34b703254..260854faf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,7 +344,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "auron" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "auron-jni-bridge" -version = "0.1.0" +version = "8.0.0" dependencies = [ "datafusion", "jni", @@ -384,7 +384,7 @@ dependencies = [ [[package]] name = "auron-memmgr" -version = "0.1.0" +version = "8.0.0" dependencies = [ "async-trait", "auron-jni-bridge", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "auron-planner" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "base64", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "datafusion-ext-commons" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "arrow-schema", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "datafusion-ext-exprs" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "datafusion-ext-functions" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "datafusion-ext-plans" -version = "0.1.0" +version = "8.0.0" dependencies = [ "arrow", "arrow-schema", diff --git a/Cargo.toml b/Cargo.toml index 7eda0c6d6..b1fcffc7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,6 +29,8 @@ members = [ ] [workspace.package] +version = "8.0.0" +license = "Apache-2.0" edition = "2024" [workspace.lints.rust] diff --git a/native-engine/auron-jni-bridge/Cargo.toml b/native-engine/auron-jni-bridge/Cargo.toml index 2256e9626..7523c3913 100644 --- a/native-engine/auron-jni-bridge/Cargo.toml +++ b/native-engine/auron-jni-bridge/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron-jni-bridge" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/auron-memmgr/Cargo.toml b/native-engine/auron-memmgr/Cargo.toml index 3b0ee2427..893daa1db 100644 --- a/native-engine/auron-memmgr/Cargo.toml +++ b/native-engine/auron-memmgr/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron-memmgr" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/auron-planner/Cargo.toml b/native-engine/auron-planner/Cargo.toml index 7bcc8a8d7..ec865ad36 100644 --- a/native-engine/auron-planner/Cargo.toml +++ b/native-engine/auron-planner/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron-planner" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/auron/Cargo.toml b/native-engine/auron/Cargo.toml index 3717a5573..84928b430 100644 --- a/native-engine/auron/Cargo.toml +++ b/native-engine/auron/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/datafusion-ext-commons/Cargo.toml b/native-engine/datafusion-ext-commons/Cargo.toml index 12863708d..dc6d6ea8d 100644 --- a/native-engine/datafusion-ext-commons/Cargo.toml +++ b/native-engine/datafusion-ext-commons/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-commons" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/datafusion-ext-exprs/Cargo.toml b/native-engine/datafusion-ext-exprs/Cargo.toml index 32c4c3ad5..a38b71e47 100644 --- a/native-engine/datafusion-ext-exprs/Cargo.toml +++ b/native-engine/datafusion-ext-exprs/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-exprs" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/datafusion-ext-functions/Cargo.toml b/native-engine/datafusion-ext-functions/Cargo.toml index a5eb5ded5..7aef26d56 100644 --- a/native-engine/datafusion-ext-functions/Cargo.toml +++ b/native-engine/datafusion-ext-functions/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-functions" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true diff --git a/native-engine/datafusion-ext-plans/Cargo.toml b/native-engine/datafusion-ext-plans/Cargo.toml index d4d3464e2..f21857034 100644 --- a/native-engine/datafusion-ext-plans/Cargo.toml +++ b/native-engine/datafusion-ext-plans/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-plans" -version = "0.1.0" -license = "Apache-2.0" -edition.workspace = true +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } [lints] workspace = true