You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/07/20 18:08:25 UTC

[arrow-rs] branch master updated: Update master version to 6.0.0-SNAPSHOT (#547)

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

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 68a4b5b  Update master version to 6.0.0-SNAPSHOT (#547)
68a4b5b is described below

commit 68a4b5baa0593f7ac43ae394b5b8d27fdb97be58
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Tue Jul 20 14:08:16 2021 -0400

    Update master version to 6.0.0-SNAPSHOT (#547)
---
 arrow-flight/Cargo.toml                              | 4 ++--
 arrow-pyarrow-integration-testing/Cargo.toml         | 4 ++--
 arrow/Cargo.toml                                     | 2 +-
 arrow/test/dependency/default-features/Cargo.toml    | 2 +-
 arrow/test/dependency/no-default-features/Cargo.toml | 2 +-
 arrow/test/dependency/simd/Cargo.toml                | 2 +-
 dev/release/README.md                                | 4 ++--
 integration-testing/Cargo.toml                       | 2 +-
 parquet/Cargo.toml                                   | 6 +++---
 parquet_derive/Cargo.toml                            | 4 ++--
 parquet_derive/README.md                             | 4 ++--
 parquet_derive_test/Cargo.toml                       | 6 +++---
 12 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml
index 6b72d02..aeafc4a 100644
--- a/arrow-flight/Cargo.toml
+++ b/arrow-flight/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-flight"
 description = "Apache Arrow Flight"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 edition = "2018"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
 homepage = "https://github.com/apache/arrow-rs"
@@ -26,7 +26,7 @@ repository = "https://github.com/apache/arrow-rs"
 license = "Apache-2.0"
 
 [dependencies]
-arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "6.0.0-SNAPSHOT" }
 base64 = "0.13"
 tonic = "0.5"
 bytes = "1"
diff --git a/arrow-pyarrow-integration-testing/Cargo.toml b/arrow-pyarrow-integration-testing/Cargo.toml
index 34d2435..59a084f 100644
--- a/arrow-pyarrow-integration-testing/Cargo.toml
+++ b/arrow-pyarrow-integration-testing/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-pyarrow-integration-testing"
 description = ""
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 homepage = "https://github.com/apache/arrow-rs"
 repository = "https://github.com/apache/arrow-rs"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
@@ -31,7 +31,7 @@ name = "arrow_pyarrow_integration_testing"
 crate-type = ["cdylib"]
 
 [dependencies]
-arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "6.0.0-SNAPSHOT" }
 pyo3 = { version = "0.12.1", features = ["extension-module"] }
 
 [package.metadata.maturin]
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index ca343eb..f5a3e24 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "arrow"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 description = "Rust implementation of Apache Arrow"
 homepage = "https://github.com/apache/arrow-rs"
 repository = "https://github.com/apache/arrow-rs"
diff --git a/arrow/test/dependency/default-features/Cargo.toml b/arrow/test/dependency/default-features/Cargo.toml
index 0cc4020..a844f39 100644
--- a/arrow/test/dependency/default-features/Cargo.toml
+++ b/arrow/test/dependency/default-features/Cargo.toml
@@ -24,6 +24,6 @@ edition = "2018"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT" }
+arrow = { path = "../../../../arrow", version = "6.0.0-SNAPSHOT" }
 
 [workspace]
diff --git a/arrow/test/dependency/no-default-features/Cargo.toml b/arrow/test/dependency/no-default-features/Cargo.toml
index 6e46543..d7b7b43 100644
--- a/arrow/test/dependency/no-default-features/Cargo.toml
+++ b/arrow/test/dependency/no-default-features/Cargo.toml
@@ -24,6 +24,6 @@ edition = "2018"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT", default-features = false }
+arrow = { path = "../../../../arrow", version = "6.0.0-SNAPSHOT", default-features = false }
 
 [workspace]
diff --git a/arrow/test/dependency/simd/Cargo.toml b/arrow/test/dependency/simd/Cargo.toml
index c676c7f..d4a65f3 100644
--- a/arrow/test/dependency/simd/Cargo.toml
+++ b/arrow/test/dependency/simd/Cargo.toml
@@ -24,6 +24,6 @@ edition = "2018"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-arrow = { path = "../../../../arrow", version = "5.0.0-SNAPSHOT", features = ["simd"]}
+arrow = { path = "../../../../arrow", version = "6.0.0-SNAPSHOT", features = ["simd"]}
 
 [workspace]
diff --git a/dev/release/README.md b/dev/release/README.md
index e5fe72a..9634888 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -88,7 +88,7 @@ Now prepare a PR to update `CHANGELOG.md` and versions on `active_release` branc
 
 See [#298](https://github.com/apache/arrow-rs/pull/298) for an example.
 
-Here are the commands used to prepare the 4.1.0 release:
+Here are the commands that could be used to prepare the 5.1.0 release:
 
 ```bash
 git checkout active_release
@@ -102,7 +102,7 @@ CHANGELOG_GITHUB_TOKEN=<TOKEN> ./dev/release/update_change_log.sh
 git commit -a -m 'Create changelog'
 
 # update versions
-sed -i '' -e 's/5.0.0-SNAPSHOT/4.1.0/g' `find . -name 'Cargo.toml'`
+sed -i '' -e 's/5.0.0-SNAPSHOT/5.1.0/g' `find . -name 'Cargo.toml' -or -name '*.md'`
 git commit -a -m 'Update version'
 ```
 
diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml
index a9f7233..779ad9c 100644
--- a/integration-testing/Cargo.toml
+++ b/integration-testing/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-integration-testing"
 description = "Binaries used in the Arrow integration tests"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 homepage = "https://github.com/apache/arrow-rs"
 repository = "https://github.com/apache/arrow-rs"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 120b81d..9a3a245 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 license = "Apache-2.0"
 description = "Apache Parquet implementation in Rust"
 homepage = "https://github.com/apache/arrow-rs"
@@ -41,7 +41,7 @@ lz4 = { version = "1.23", optional = true }
 zstd = { version = "0.9", optional = true }
 chrono = "0.4"
 num-bigint = "0.4"
-arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT", optional = true }
+arrow = { path = "../arrow", version = "6.0.0-SNAPSHOT", optional = true }
 base64 = { version = "0.13", optional = true }
 clap = { version = "2.33.3", optional = true }
 serde_json = { version = "1.0", features = ["preserve_order"], optional = true }
@@ -54,7 +54,7 @@ snap = "1.0"
 brotli = "3.3"
 flate2 = "1.0"
 lz4 = "1.23"
-arrow = { path = "../arrow", version = "5.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "6.0.0-SNAPSHOT" }
 serde_json = { version = "1.0", features = ["preserve_order"] }
 
 [features]
diff --git a/parquet_derive/Cargo.toml b/parquet_derive/Cargo.toml
index 1d16137..c374b33 100644
--- a/parquet_derive/Cargo.toml
+++ b/parquet_derive/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet_derive"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 license = "Apache-2.0"
 description = "Derive macros for the Rust implementation of Apache Parquet"
 homepage = "https://github.com/apache/arrow-rs"
@@ -39,4 +39,4 @@ uuid = []
 proc-macro2 = "1.0"
 quote = "1.0"
 syn = { version = "1.0", features = ["full", "extra-traits"] }
-parquet = { path = "../parquet", version = "5.0.0-SNAPSHOT" }
+parquet = { path = "../parquet", version = "6.0.0-SNAPSHOT" }
diff --git a/parquet_derive/README.md b/parquet_derive/README.md
index 47ac8ae..df5bd44 100644
--- a/parquet_derive/README.md
+++ b/parquet_derive/README.md
@@ -30,8 +30,8 @@ Derive also has some support for the chrono time library. You must must enable t
 Add this to your Cargo.toml:
 ```toml
 [dependencies]
-parquet = "4.0.0-SNAPSHOT"
-parquet_derive = "4.0.0-SNAPSHOT"
+parquet = "6.0.0-SNAPSHOT"
+parquet_derive = "6.0.0-SNAPSHOT"
 ```
 
 and this to your crate root:
diff --git a/parquet_derive_test/Cargo.toml b/parquet_derive_test/Cargo.toml
index 25c814b..2d68810 100644
--- a/parquet_derive_test/Cargo.toml
+++ b/parquet_derive_test/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet_derive_test"
-version = "5.0.0-SNAPSHOT"
+version = "6.0.0-SNAPSHOT"
 license = "Apache-2.0"
 description = "Integration test package for parquet-derive"
 homepage = "https://github.com/apache/arrow-rs"
@@ -28,5 +28,5 @@ edition = "2018"
 publish = false
 
 [dependencies]
-parquet = { path = "../parquet", version = "5.0.0-SNAPSHOT" }
-parquet_derive = { path = "../parquet_derive", version = "5.0.0-SNAPSHOT" }
+parquet = { path = "../parquet", version = "6.0.0-SNAPSHOT" }
+parquet_derive = { path = "../parquet_derive", version = "6.0.0-SNAPSHOT" }