diff --git a/Cargo.toml b/Cargo.toml index 653f442..594e61a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://github.com/clflushopt/tpchgen-rs" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/clflushopt/tpchgen-rs" -version = "2.0.1" +version = "2.0.2" [profile.release] strip = "debuginfo" diff --git a/tpchgen-arrow/Cargo.toml b/tpchgen-arrow/Cargo.toml index 483b7ba..b212375 100644 --- a/tpchgen-arrow/Cargo.toml +++ b/tpchgen-arrow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tpchgen-arrow" -version = "2.0.1" +version = "2.0.2" edition = "2024" authors = ["clflushopt", "alamb"] description = "TPC-H data generator into Apache Arrow format" @@ -10,7 +10,7 @@ license = "Apache-2.0" [dependencies] arrow = { version = "57.1", default-features = false, features = ["prettyprint"] } -tpchgen = { path = "../tpchgen", version = "2.0.1" } +tpchgen = { path = "../tpchgen", version = "2.0.2" } [dev-dependencies] arrow-csv = "57.1" diff --git a/tpchgen-cli/Cargo.toml b/tpchgen-cli/Cargo.toml index 1fd0663..3f0f11e 100644 --- a/tpchgen-cli/Cargo.toml +++ b/tpchgen-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tpchgen-cli" -version = "2.0.1" +version = "2.0.2" authors = { workspace = true } description = "Blazing fast pure Rust TPC-H data generator command line tool and library." readme = "README.md" @@ -21,8 +21,8 @@ path = "bin/main.rs" arrow = "57.1" parquet = "57.1" clap = { version = "4.5.32", features = ["derive"] } -tpchgen = { path = "../tpchgen", version = "2.0.1"} -tpchgen-arrow = { path = "../tpchgen-arrow", version = "2.0.1" } +tpchgen = { path = "../tpchgen", version = "2.0.2"} +tpchgen-arrow = { path = "../tpchgen-arrow", version = "2.0.2" } tokio = { version = "1.44.1", features = ["full"]} futures = "0.3.31" num_cpus = "1.0"