Skip to content

Commit ea94a80

Browse files
authored
feat: prepare cargo release for v1.0.0 (#118)
1 parent e00a16e commit ea94a80

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = "https://github.com/clflushopt/tpchgen-rs"
1111
license = "Apache-2.0"
1212
readme = "README.md"
1313
repository = "https://github.com/clflushopt/tpchgen-rs"
14-
version = "0.1.1"
14+
version = "1.0.0"
1515

1616
[profile.release]
1717
strip = "debuginfo"

tpchgen-arrow/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tpchgen-arrow"
3-
version = "0.1.1"
3+
version = "1.0.0"
44
edition = "2024"
55
authors = ["clflushopt", "alamb"]
66
description = "TPC-H data generator into Apache Arrow format"
@@ -10,7 +10,7 @@ license = "Apache-2.0"
1010

1111
[dependencies]
1212
arrow = { version = "54.3.0", default-features = false, features = ["prettyprint"] }
13-
tpchgen = { path = "../tpchgen", version = "0.1.1" }
13+
tpchgen = { path = "../tpchgen", version = "1.0.0" }
1414

1515
[dev-dependencies]
1616
arrow-csv = "54.3.0"

tpchgen-cli/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "tpchgen-cli"
3+
version = "1.0.0"
34
authors = { workspace = true }
45
description = "Blazing fast pure Rust no dependency TPC-H data generator."
56
readme = { workspace = true }
@@ -8,14 +9,12 @@ homepage = { workspace = true }
89
license = { workspace = true }
910
repository = { workspace = true }
1011

11-
version = "0.1.1"
12-
1312
[dependencies]
1413
arrow = "54.3.0"
1514
parquet = "54.3.0"
1615
clap = { version = "4.5.32", features = ["derive"] }
17-
tpchgen = { path = "../tpchgen", version = "0.1.0"}
18-
tpchgen-arrow = { path = "../tpchgen-arrow", version = "0.1.1" }
16+
tpchgen = { path = "../tpchgen", version = "1.0.0"}
17+
tpchgen-arrow = { path = "../tpchgen-arrow", version = "1.0.0" }
1918
tokio = { version = "1.44.1", features = ["full"]}
2019
futures = "0.3.31"
2120
num_cpus = "1.0"

0 commit comments

Comments
 (0)