Skip to content

Commit ad649e8

Browse files
authored
bump to 2.0.1 to fix README in pypi (#188)
### Tested locally ``` maturin build --release --out dist maturin sdist --out dist python -m pip install --upgrade twine python -m twine check --strict dist/* maturin upload \ --repository-url https://test.pypi.org/legacy/ \ --username __token__ \ --password "$TESTPYPI_API_TOKEN" \ --non-interactive \ --skip-existing \ dist/* ``` Uploaded to testpypi https://test.pypi.org/project/tpchgen-cli/
2 parents ca429cc + e8e1e28 commit ad649e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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 = "2.0.0"
14+
version = "2.0.1"
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 = "2.0.0"
3+
version = "2.0.1"
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 = "56", default-features = false, features = ["prettyprint"] }
13-
tpchgen = { path = "../tpchgen", version = "2.0.0" }
13+
tpchgen = { path = "../tpchgen", version = "2.0.1" }
1414

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

tpchgen-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tpchgen-cli"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
authors = { workspace = true }
55
description = "Blazing fast pure Rust TPC-H data generator command line tool."
66
readme = "README.md"
@@ -13,8 +13,8 @@ repository = { workspace = true }
1313
arrow = "56"
1414
parquet = "56"
1515
clap = { version = "4.5.32", features = ["derive"] }
16-
tpchgen = { path = "../tpchgen", version = "2.0.0"}
17-
tpchgen-arrow = { path = "../tpchgen-arrow", version = "2.0.0" }
16+
tpchgen = { path = "../tpchgen", version = "2.0.1"}
17+
tpchgen-arrow = { path = "../tpchgen-arrow", version = "2.0.1" }
1818
tokio = { version = "1.44.1", features = ["full"]}
1919
futures = "0.3.31"
2020
num_cpus = "1.0"

0 commit comments

Comments
 (0)