You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ne...@apache.org on 2020/06/30 12:13:20 UTC

[arrow] 01/01: ARROW-8535: [Rust] specify arrow-flight version

This is an automated email from the ASF dual-hosted git repository.

nevime pushed a commit to branch ARROW-8535
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 5f4df948b8af6e33f2ac85dcd4749277d07656b6
Author: Neville Dipale <ne...@gmail.com>
AuthorDate: Tue Jun 30 14:12:37 2020 +0200

    ARROW-8535: [Rust] specify arrow-flight version
---
 dev/release/00-prepare-test.rb | 2 ++
 rust/arrow/Cargo.toml          | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev/release/00-prepare-test.rb b/dev/release/00-prepare-test.rb
index bdebae9..34e8d78 100644
--- a/dev/release/00-prepare-test.rb
+++ b/dev/release/00-prepare-test.rb
@@ -267,6 +267,8 @@ class PrepareTest < Test::Unit::TestCase
                      hunks: [
                        ["-version = \"#{@snapshot_version}\"",
                         "+version = \"#{@release_version}\""],
+                        ["-arrow-flight = { path = \"../arrow-flight\", optional = true, version = \"#{@snapshot_version}\" }",
+                        "+arrow-flight = { path = \"../arrow-flight\", optional = true, version = \"#{@release_version}\" }"],
                      ],
                    },
                    {
diff --git a/rust/arrow/Cargo.toml b/rust/arrow/Cargo.toml
index 04e2463..d23441b 100644
--- a/rust/arrow/Cargo.toml
+++ b/rust/arrow/Cargo.toml
@@ -49,7 +49,7 @@ packed_simd = { version = "0.3", optional = true }
 chrono = "0.4"
 flatbuffers = "0.6"
 hex = "0.4"
-arrow-flight = { path = "../arrow-flight", optional = true }
+arrow-flight = { path = "../arrow-flight", optional = true, version = "1.0.0-SNAPSHOT" }
 prettytable-rs = { version = "0.8.0", optional = true }
 
 [features]