This is an automated email from the ASF dual-hosted git repository. kszucs pushed a commit to branch maint-1.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit e9054308914de6f55b38a7bd549528c4bf212b96 Author: Jorge C. Leitao <jorgecarlei...@gmail.com> AuthorDate: Fri Jul 24 09:55:08 2020 -0600 ARROW-9549 [Rust] Fixed version in dependency in parquet. Closes #7827 from jorgecarleitao/fix_version Authored-by: Jorge C. Leitao <jorgecarlei...@gmail.com> Signed-off-by: Andy Grove <andygrov...@gmail.com> --- rust/parquet/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml index 65de44c..d25a44d 100644 --- a/rust/parquet/Cargo.toml +++ b/rust/parquet/Cargo.toml @@ -39,7 +39,7 @@ lz4 = { version = "1.23", optional = true } zstd = { version = "0.5", optional = true } chrono = "0.4" num-bigint = "0.3" -arrow = { path = "../arrow", version = "1.0.0-SNAPSHOT", optional = true } +arrow = { path = "../arrow", version = "1.1.0-SNAPSHOT", optional = true } serde_json = { version = "1.0", features = ["preserve_order"] } [dev-dependencies]