This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch active_release
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/active_release by this push:
new 7a0bca3 Prepare for the 6.4.0: release notes and version update
(#1025)
7a0bca3 is described below
commit 7a0bca35239f1d4fc3a1dca410384a1e5e962147
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Dec 10 10:23:26 2021 -0500
Prepare for the 6.4.0: release notes and version update (#1025)
* Update version to 6.4.0
* 6.4.0 release notes
* Correct changelog date
---
CHANGELOG.md | 16 ++++++++++++++++
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 +-
integration-testing/Cargo.toml | 2 +-
parquet/Cargo.toml | 4 ++--
parquet_derive/Cargo.toml | 4 ++--
parquet_derive/README.md | 4 ++--
.../test/dependency/default-features/Cargo.toml | 2 +-
parquet_derive_test/Cargo.toml | 6 +++---
13 files changed, 35 insertions(+), 19 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd12510..59977fe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,6 +21,22 @@ For older versions, see
[apache/arrow/CHANGELOG.md](https://github.com/apache/ar
# Changelog
+## [6.4.0](https://github.com/apache/arrow-rs/tree/6.4.0) (2021-12-10)
+
+
+[Full Changelog](https://github.com/apache/arrow-rs/compare/6.3.0...6.4.0)
+
+
+*
[049f48559f578243935b6e512d06c4c2df360bf1](https://github.com/apache/arrow-rs/commit/049f48559f578243935b6e512d06c4c2df360bf1)
Force new cargo and target caching to fix CI
([#1023](https://github.com/apache/arrow-rs/pull/1023))
([#1024](https://github.com/apache/arrow-rs/pull/1024))
+*
[ef37da3b60f71a52d5ad67e9ca810dca38b29f00](https://github.com/apache/arrow-rs/commit/ef37da3b60f71a52d5ad67e9ca810dca38b29f00)
Fix a broken link and some missing styling in the main arrow crate docs
([#1013](https://github.com/apache/arrow-rs/pull/1013))
([#1019](https://github.com/apache/arrow-rs/pull/1019))
+*
[f2c746a9b968714cfe05d35fcee8658371acd899](https://github.com/apache/arrow-rs/commit/f2c746a9b968714cfe05d35fcee8658371acd899)
Remove out of date comment
([#1008](https://github.com/apache/arrow-rs/pull/1008))
([#1018](https://github.com/apache/arrow-rs/pull/1018))
+*
[557fc11e3b2a09a680c0cfbf38d27b13101b63fe](https://github.com/apache/arrow-rs/commit/557fc11e3b2a09a680c0cfbf38d27b13101b63fe)
Remove unneeded `rc` feature of serde
([#990](https://github.com/apache/arrow-rs/pull/990))
([#1016](https://github.com/apache/arrow-rs/pull/1016))
+*
[b28385e096b1cf8f5fb2773d49b160f93d94fbac](https://github.com/apache/arrow-rs/commit/b28385e096b1cf8f5fb2773d49b160f93d94fbac)
Docstrings for Timestamp*Array.
([#988](https://github.com/apache/arrow-rs/pull/988))
([#1015](https://github.com/apache/arrow-rs/pull/1015))
+*
[a92672e40217670d2566a85d70b0b59fffac594c](https://github.com/apache/arrow-rs/commit/a92672e40217670d2566a85d70b0b59fffac594c)
Add full data validation for ArrayData::try_new()
([#1007](https://github.com/apache/arrow-rs/pull/1007))
+*
[6c8b2936d7b07e1e2f5d1d48eea425a385382dfb](https://github.com/apache/arrow-rs/commit/6c8b2936d7b07e1e2f5d1d48eea425a385382dfb)
Add boolean comparison to scalar kernels for less then, greater than
([#977](https://github.com/apache/arrow-rs/pull/977))
([#1005](https://github.com/apache/arrow-rs/pull/1005))
+*
[14d140aeca608a23a8a6b2c251c8f53ffd377e61](https://github.com/apache/arrow-rs/commit/14d140aeca608a23a8a6b2c251c8f53ffd377e61)
Fix some typos in code and comments
([#985](https://github.com/apache/arrow-rs/pull/985))
([#1006](https://github.com/apache/arrow-rs/pull/1006))
+*
[b4507f562fb0eddfb79840871cd2733dc0e337cd](https://github.com/apache/arrow-rs/commit/b4507f562fb0eddfb79840871cd2733dc0e337cd)
Fix warnings introduced by Rust/Clippy 1.57.0
([#1004](https://github.com/apache/arrow-rs/pull/1004))
+
## [6.3.0](https://github.com/apache/arrow-rs/tree/6.3.0) (2021-11-26)
diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml
index 865057e..76f0f1c 100644
--- a/arrow-flight/Cargo.toml
+++ b/arrow-flight/Cargo.toml
@@ -18,7 +18,7 @@
[package]
name = "arrow-flight"
description = "Apache Arrow Flight"
-version = "6.3.0"
+version = "6.4.0"
edition = "2018"
authors = ["Apache Arrow <[email protected]>"]
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 = "6.3.0" }
+arrow = { path = "../arrow", version = "6.4.0" }
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 27d5e86..2589b79 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 = "6.3.0"
+version = "6.4.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
@@ -31,7 +31,7 @@ name = "arrow_pyarrow_integration_testing"
crate-type = ["cdylib"]
[dependencies]
-arrow = { path = "../arrow", version = "6.3.0", features = ["pyarrow"] }
+arrow = { path = "../arrow", version = "6.4.0", features = ["pyarrow"] }
pyo3 = { version = "0.14", features = ["extension-module"] }
[package.metadata.maturin]
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index 8a080e5..c7c2e27 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow"
-version = "6.3.0"
+version = "6.4.0"
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 da3316b..da697c1 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 = "6.3.0" }
+arrow = { path = "../../../../arrow", version = "6.4.0" }
[workspace]
diff --git a/arrow/test/dependency/no-default-features/Cargo.toml
b/arrow/test/dependency/no-default-features/Cargo.toml
index 60ffb36..7e8ce89 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 = "6.3.0", default-features =
false }
+arrow = { path = "../../../../arrow", version = "6.4.0", default-features =
false }
[workspace]
diff --git a/arrow/test/dependency/simd/Cargo.toml
b/arrow/test/dependency/simd/Cargo.toml
index 9ffd39f..ebd936c 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 = "6.3.0", features = ["simd"]}
+arrow = { path = "../../../../arrow", version = "6.4.0", features = ["simd"]}
[workspace]
diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml
index 89674dc..ed99db0 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 = "6.3.0"
+version = "6.4.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 28e8277..98df81c 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet"
-version = "6.3.0"
+version = "6.4.0"
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 = "6.3.0", optional = true,
default-features = false, features = ["ipc"] }
+arrow = { path = "../arrow", version = "6.4.0", optional = true,
default-features = false, features = ["ipc"] }
base64 = { version = "0.13", optional = true }
clap = { version = "2.33.3", optional = true }
serde_json = { version = "1.0", features = ["preserve_order"], optional = true
}
diff --git a/parquet_derive/Cargo.toml b/parquet_derive/Cargo.toml
index 2fee0e2..5fa4398 100644
--- a/parquet_derive/Cargo.toml
+++ b/parquet_derive/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet_derive"
-version = "6.3.0"
+version = "6.4.0"
license = "Apache-2.0"
description = "Derive macros for the Rust implementation of Apache Parquet"
homepage = "https://github.com/apache/arrow-rs"
@@ -34,4 +34,4 @@ proc-macro = true
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "extra-traits"] }
-parquet = { path = "../parquet", version = "6.3.0" }
+parquet = { path = "../parquet", version = "6.4.0" }
diff --git a/parquet_derive/README.md b/parquet_derive/README.md
index d772d05..0ff9e2f 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 = "6.3.0"
-parquet_derive = "6.3.0"
+parquet = "6.4.0"
+parquet_derive = "6.4.0"
```
and this to your crate root:
diff --git a/parquet_derive/test/dependency/default-features/Cargo.toml
b/parquet_derive/test/dependency/default-features/Cargo.toml
index 5658c9c..0333057 100644
--- a/parquet_derive/test/dependency/default-features/Cargo.toml
+++ b/parquet_derive/test/dependency/default-features/Cargo.toml
@@ -24,7 +24,7 @@ edition = "2018"
# See more keys and their definitions at
https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-parquet_derive = { path = "../../../../parquet_derive", version = "6.3.0" }
+parquet_derive = { path = "../../../../parquet_derive", version = "6.4.0" }
# Keep this out of the default workspace
[workspace]
diff --git a/parquet_derive_test/Cargo.toml b/parquet_derive_test/Cargo.toml
index 559066c..b201b99 100644
--- a/parquet_derive_test/Cargo.toml
+++ b/parquet_derive_test/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet_derive_test"
-version = "6.3.0"
+version = "6.4.0"
license = "Apache-2.0"
description = "Integration test package for parquet-derive"
homepage = "https://github.com/apache/arrow-rs"
@@ -28,6 +28,6 @@ edition = "2018"
publish = false
[dependencies]
-parquet = { path = "../parquet", version = "6.3.0" }
-parquet_derive = { path = "../parquet_derive", version = "6.3.0" }
+parquet = { path = "../parquet", version = "6.4.0" }
+parquet_derive = { path = "../parquet_derive", version = "6.4.0" }
chrono = "0.4.19"
\ No newline at end of file