Skip to content

Commit d212713

Browse files
authored
Chore: Update variant and geospatial versons to workspace (#8920)
# Which issue does this PR close? - Part of #8464 # Rationale for this change Variant and geospatial have been released, they now should follow the versioning of the other crates in this repo There seemed to be some issue publishing the 57.1.0 release with these crates. # What changes are included in this PR? Update versions to follow other crates # Are these changes tested? Yes by CI # Are there any user-facing changes? No
1 parent fe94a25 commit d212713

File tree

5 files changed

+8
-18
lines changed

5 files changed

+8
-18
lines changed

Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,10 @@ arrow-schema = { version = "57.1.0", path = "./arrow-schema" }
101101
arrow-select = { version = "57.1.0", path = "./arrow-select" }
102102
arrow-string = { version = "57.1.0", path = "./arrow-string" }
103103
parquet = { version = "57.1.0", path = "./parquet", default-features = false }
104-
105-
# These crates have not yet been released and thus do not use the workspace version
106-
parquet-geospatial = { version = "0.1.0", path = "./parquet-geospatial" }
107-
parquet-variant = { version = "0.2.0", path = "./parquet-variant" }
108-
parquet-variant-json = { version = "0.2.0", path = "./parquet-variant-json" }
109-
parquet-variant-compute = { version = "0.2.0", path = "./parquet-variant-compute" }
104+
parquet-geospatial = { version = "57.1.0", path = "./parquet-geospatial" }
105+
parquet-variant = { version = "57.1.0", path = "./parquet-variant" }
106+
parquet-variant-json = { version = "57.1.0", path = "./parquet-variant-json" }
107+
parquet-variant-compute = { version = "57.1.0", path = "./parquet-variant-compute" }
110108

111109
chrono = { version = "0.4.40", default-features = false, features = ["clock"] }
112110

parquet-geospatial/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717

1818
[package]
1919
name = "parquet-geospatial"
20-
# This package is still in development and thus the version does
21-
# not follow the versions of the rest of the crates in this repo.
22-
version = "0.1.0"
20+
version = { workspace = true }
2321
license = { workspace = true }
2422
description = "Apache Parquet Geometry and Geography implementation in Rust"
2523
homepage = { workspace = true }

parquet-variant-compute/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717

1818
[package]
1919
name = "parquet-variant-compute"
20-
# This package is still in development and thus the version does
21-
# not follow the versions of the rest of the crates in this repo.
22-
version = "0.2.0"
20+
version = { workspace = true }
2321
license = { workspace = true }
2422
description = "Apache Parquet Variant Batch Processing"
2523
homepage = { workspace = true }

parquet-variant-json/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717

1818
[package]
1919
name = "parquet-variant-json"
20-
# This package is still in development and thus the version does
21-
# not follow the versions of the rest of the crates in this repo.
22-
version = "0.2.0"
20+
version = { workspace = true }
2321
license = { workspace = true }
2422
description = "Apache Parquet Variant to/from JSON"
2523
homepage = { workspace = true }

parquet-variant/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717

1818
[package]
1919
name = "parquet-variant"
20-
# This package is still in development and thus the version does
21-
# not follow the versions of the rest of the crates in this repo.
22-
version = "0.2.0"
20+
version = { workspace = true }
2321
license = { workspace = true }
2422
description = "Apache Parquet Variant implementation in Rust"
2523
homepage = { workspace = true }

0 commit comments

Comments
 (0)