This is an automated email from the ASF dual-hosted git repository.
tustvold 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 0028acd8c Prep for 35.0.0 (#3836)
0028acd8c is described below
commit 0028acd8c1791f7b766db669d93e9281200a71c9
Author: Ian Alexander Joiner <[email protected]>
AuthorDate: Fri Mar 10 10:06:14 2023 -0500
Prep for 35.0.0 (#3836)
* Update version
* update change log script
---
arrow-arith/Cargo.toml | 10 +++++-----
arrow-array/Cargo.toml | 8 ++++----
arrow-buffer/Cargo.toml | 2 +-
arrow-cast/Cargo.toml | 12 ++++++------
arrow-csv/Cargo.toml | 12 ++++++------
arrow-data/Cargo.toml | 6 +++---
arrow-flight/Cargo.toml | 14 +++++++-------
arrow-flight/README.md | 2 +-
arrow-integration-test/Cargo.toml | 6 +++---
arrow-integration-testing/Cargo.toml | 2 +-
arrow-ipc/Cargo.toml | 12 ++++++------
arrow-json/Cargo.toml | 12 ++++++------
arrow-ord/Cargo.toml | 12 ++++++------
arrow-pyarrow-integration-testing/Cargo.toml | 4 ++--
arrow-row/Cargo.toml | 14 +++++++-------
arrow-schema/Cargo.toml | 2 +-
arrow-select/Cargo.toml | 10 +++++-----
arrow-string/Cargo.toml | 12 ++++++------
arrow/Cargo.toml | 28 ++++++++++++++--------------
arrow/README.md | 2 +-
dev/release/README.md | 2 +-
dev/release/file_release_pr.sh | 4 ++--
dev/release/update_change_log.sh | 4 ++--
parquet/Cargo.toml | 20 ++++++++++----------
parquet_derive/Cargo.toml | 4 ++--
parquet_derive/README.md | 4 ++--
parquet_derive_test/Cargo.toml | 6 +++---
27 files changed, 113 insertions(+), 113 deletions(-)
diff --git a/arrow-arith/Cargo.toml b/arrow-arith/Cargo.toml
index 6b3d82c9c..4360332d9 100644
--- a/arrow-arith/Cargo.toml
+++ b/arrow-arith/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-arith"
-version = "34.0.0"
+version = "35.0.0"
description = "Arrow arithmetic kernels"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false }
half = { version = "2.1", default-features = false }
num = { version = "0.4", default-features = false, features = ["std"] }
diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml
index 5f839426e..1675f5983 100644
--- a/arrow-array/Cargo.toml
+++ b/arrow-array/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-array"
-version = "34.0.0"
+version = "35.0.0"
description = "Array abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -45,9 +45,9 @@ ahash = { version = "0.8", default-features = false, features
= ["compile-time-r
ahash = { version = "0.8", default-features = false, features =
["runtime-rng"] }
[dependencies]
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.8", optional = true }
num = { version = "0.4", default-features = false, features = ["std"] }
diff --git a/arrow-buffer/Cargo.toml b/arrow-buffer/Cargo.toml
index 63e5aaa44..699a10001 100644
--- a/arrow-buffer/Cargo.toml
+++ b/arrow-buffer/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-buffer"
-version = "34.0.0"
+version = "35.0.0"
description = "Buffer abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
diff --git a/arrow-cast/Cargo.toml b/arrow-cast/Cargo.toml
index 79c073b9d..235dca135 100644
--- a/arrow-cast/Cargo.toml
+++ b/arrow-cast/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-cast"
-version = "34.0.0"
+version = "35.0.0"
description = "Cast kernel and utilities for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -44,11 +44,11 @@ features = ["prettyprint"]
prettyprint = ["comfy-table"]
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-select = { version = "34.0.0", path = "../arrow-select" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-select = { version = "35.0.0", path = "../arrow-select" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
num = { version = "0.4", default-features = false, features = ["std"] }
lexical-core = { version = "^0.8", default-features = false, features =
["write-integers", "write-floats", "parse-integers", "parse-floats"] }
diff --git a/arrow-csv/Cargo.toml b/arrow-csv/Cargo.toml
index 62ca69bca..7ceb1401d 100644
--- a/arrow-csv/Cargo.toml
+++ b/arrow-csv/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-csv"
-version = "34.0.0"
+version = "35.0.0"
description = "Support for parsing CSV format into the Arrow format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
csv = { version = "1.1", default-features = false }
csv-core = { version = "0.1"}
diff --git a/arrow-data/Cargo.toml b/arrow-data/Cargo.toml
index 33de17339..d58413a76 100644
--- a/arrow-data/Cargo.toml
+++ b/arrow-data/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-data"
-version = "34.0.0"
+version = "35.0.0"
description = "Array data abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -50,8 +50,8 @@ features = ["ffi"]
[dependencies]
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
num = { version = "0.4", default-features = false, features = ["std"] }
half = { version = "2.1", default-features = false }
diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml
index 819818191..827be6d05 100644
--- a/arrow-flight/Cargo.toml
+++ b/arrow-flight/Cargo.toml
@@ -18,7 +18,7 @@
[package]
name = "arrow-flight"
description = "Apache Arrow Flight"
-version = "34.0.0"
+version = "35.0.0"
edition = "2021"
rust-version = "1.62"
authors = ["Apache Arrow <[email protected]>"]
@@ -27,12 +27,12 @@ repository = "https://github.com/apache/arrow-rs"
license = "Apache-2.0"
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
# Cast is needed to work around https://github.com/apache/arrow-rs/issues/3389
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-ipc = { version = "34.0.0", path = "../arrow-ipc" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-ipc = { version = "35.0.0", path = "../arrow-ipc" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
base64 = { version = "0.21", default-features = false, features = ["std"] }
tonic = { version = "0.8", default-features = false, features = ["transport",
"codegen", "prost"] }
bytes = { version = "1", default-features = false }
@@ -58,7 +58,7 @@ tls = ["tonic/tls"]
cli = ["arrow-cast/prettyprint", "clap", "tracing-log", "tracing-subscriber",
"tonic/tls-webpki-roots"]
[dev-dependencies]
-arrow-cast = { version = "34.0.0", path = "../arrow-cast", features =
["prettyprint"] }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast", features =
["prettyprint"] }
assert_cmd = "2.0.8"
tempfile = "3.3"
tokio-stream = { version = "0.1", features = ["net"] }
diff --git a/arrow-flight/README.md b/arrow-flight/README.md
index 1f8026887..41312cc0c 100644
--- a/arrow-flight/README.md
+++ b/arrow-flight/README.md
@@ -27,7 +27,7 @@ Add this to your Cargo.toml:
```toml
[dependencies]
-arrow-flight = "34.0.0"
+arrow-flight = "35.0.0"
```
Apache Arrow Flight is a gRPC based protocol for exchanging Arrow data between
processes. See the blog post [Introducing Apache Arrow Flight: A Framework for
Fast Data
Transport](https://arrow.apache.org/blog/2019/10/13/introducing-arrow-flight/)
for more information.
diff --git a/arrow-integration-test/Cargo.toml
b/arrow-integration-test/Cargo.toml
index 2d92e6292..ca14401b6 100644
--- a/arrow-integration-test/Cargo.toml
+++ b/arrow-integration-test/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-integration-test"
-version = "34.0.0"
+version = "35.0.0"
description = "Support for the Apache Arrow JSON test data format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,8 +38,8 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow = { version = "34.0.0", path = "../arrow", default-features = false }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
+arrow = { version = "35.0.0", path = "../arrow", default-features = false }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
hex = { version = "0.4", default-features = false, features = ["std"] }
serde = { version = "1.0", default-features = false, features = ["rc",
"derive"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
diff --git a/arrow-integration-testing/Cargo.toml
b/arrow-integration-testing/Cargo.toml
index 67d5b7d27..48700bbe9 100644
--- a/arrow-integration-testing/Cargo.toml
+++ b/arrow-integration-testing/Cargo.toml
@@ -18,7 +18,7 @@
[package]
name = "arrow-integration-testing"
description = "Binaries used in the Arrow integration tests (NOT PUBLISHED TO
crates.io)"
-version = "34.0.0"
+version = "35.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
diff --git a/arrow-ipc/Cargo.toml b/arrow-ipc/Cargo.toml
index 040d1c113..8bd7d3148 100644
--- a/arrow-ipc/Cargo.toml
+++ b/arrow-ipc/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-ipc"
-version = "34.0.0"
+version = "35.0.0"
description = "Support for the Arrow IPC format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
flatbuffers = { version = "23.1.21", default-features = false }
lz4 = { version = "1.23", default-features = false, optional = true }
zstd = { version = "0.12.0", default-features = false, optional = true }
diff --git a/arrow-json/Cargo.toml b/arrow-json/Cargo.toml
index 3869bfd90..92c1a3eb2 100644
--- a/arrow-json/Cargo.toml
+++ b/arrow-json/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-json"
-version = "34.0.0"
+version = "35.0.0"
description = "Support for parsing JSON format into the Arrow format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
half = { version = "2.1", default-features = false }
indexmap = { version = "1.9", default-features = false, features = ["std"] }
num = { version = "0.4", default-features = false, features = ["std"] }
diff --git a/arrow-ord/Cargo.toml b/arrow-ord/Cargo.toml
index 7e7ec7d4f..bc6feb4f2 100644
--- a/arrow-ord/Cargo.toml
+++ b/arrow-ord/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-ord"
-version = "34.0.0"
+version = "35.0.0"
description = "Ordering kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-select = { version = "34.0.0", path = "../arrow-select" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-select = { version = "35.0.0", path = "../arrow-select" }
num = { version = "0.4", default-features = false, features = ["std"] }
[dev-dependencies]
diff --git a/arrow-pyarrow-integration-testing/Cargo.toml
b/arrow-pyarrow-integration-testing/Cargo.toml
index cbf2e9cf2..ba084c435 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 = "34.0.0"
+version = "35.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
@@ -32,5 +32,5 @@ name = "arrow_pyarrow_integration_testing"
crate-type = ["cdylib"]
[dependencies]
-arrow = { path = "../arrow", version = "34.0.0", features = ["pyarrow"] }
+arrow = { path = "../arrow", version = "35.0.0", features = ["pyarrow"] }
pyo3 = { version = "0.18", features = ["extension-module"] }
diff --git a/arrow-row/Cargo.toml b/arrow-row/Cargo.toml
index 3ddc195c3..e2796fbe1 100644
--- a/arrow-row/Cargo.toml
+++ b/arrow-row/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-row"
-version = "34.0.0"
+version = "35.0.0"
description = "Arrow row format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -44,17 +44,17 @@ ahash = { version = "0.8", default-features = false,
features = ["compile-time-r
ahash = { version = "0.8", default-features = false, features =
["runtime-rng"] }
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
half = { version = "2.1", default-features = false }
hashbrown = { version = "0.13", default-features = false }
[dev-dependencies]
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-ord = { version = "34.0.0", path = "../arrow-ord" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-ord = { version = "35.0.0", path = "../arrow-ord" }
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"] }
[features]
diff --git a/arrow-schema/Cargo.toml b/arrow-schema/Cargo.toml
index acf6c43b8..7b240e1ac 100644
--- a/arrow-schema/Cargo.toml
+++ b/arrow-schema/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-schema"
-version = "34.0.0"
+version = "35.0.0"
description = "Defines the logical types for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
diff --git a/arrow-select/Cargo.toml b/arrow-select/Cargo.toml
index 540d37cb5..35c51c2da 100644
--- a/arrow-select/Cargo.toml
+++ b/arrow-select/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-select"
-version = "34.0.0"
+version = "35.0.0"
description = "Selection kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
num = { version = "0.4", default-features = false, features = ["std"] }
[features]
diff --git a/arrow-string/Cargo.toml b/arrow-string/Cargo.toml
index 2e8067051..923b8e8c0 100644
--- a/arrow-string/Cargo.toml
+++ b/arrow-string/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow-string"
-version = "34.0.0"
+version = "35.0.0"
description = "String kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false
[dependencies]
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-select = { version = "34.0.0", path = "../arrow-select" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-select = { version = "35.0.0", path = "../arrow-select" }
regex = { version = "1.7.0", default-features = false, features = ["std",
"unicode", "perf"] }
regex-syntax = { version = "0.6.27", default-features = false, features =
["unicode"] }
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index 0c387f305..8814f233b 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow"
-version = "34.0.0"
+version = "35.0.0"
description = "Rust implementation of Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
@@ -45,19 +45,19 @@ ahash = { version = "0.8", default-features = false,
features = ["compile-time-r
ahash = { version = "0.8", default-features = false, features =
["runtime-rng"] }
[dependencies]
-arrow-arith = { version = "34.0.0", path = "../arrow-arith" }
-arrow-array = { version = "34.0.0", path = "../arrow-array" }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer" }
-arrow-cast = { version = "34.0.0", path = "../arrow-cast" }
-arrow-csv = { version = "34.0.0", path = "../arrow-csv", optional = true }
-arrow-data = { version = "34.0.0", path = "../arrow-data" }
-arrow-ipc = { version = "34.0.0", path = "../arrow-ipc", optional = true }
-arrow-json = { version = "34.0.0", path = "../arrow-json", optional = true }
-arrow-ord = { version = "34.0.0", path = "../arrow-ord" }
-arrow-row = { version = "34.0.0", path = "../arrow-row" }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema" }
-arrow-select = { version = "34.0.0", path = "../arrow-select" }
-arrow-string = { version = "34.0.0", path = "../arrow-string" }
+arrow-arith = { version = "35.0.0", path = "../arrow-arith" }
+arrow-array = { version = "35.0.0", path = "../arrow-array" }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer" }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast" }
+arrow-csv = { version = "35.0.0", path = "../arrow-csv", optional = true }
+arrow-data = { version = "35.0.0", path = "../arrow-data" }
+arrow-ipc = { version = "35.0.0", path = "../arrow-ipc", optional = true }
+arrow-json = { version = "35.0.0", path = "../arrow-json", optional = true }
+arrow-ord = { version = "35.0.0", path = "../arrow-ord" }
+arrow-row = { version = "35.0.0", path = "../arrow-row" }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema" }
+arrow-select = { version = "35.0.0", path = "../arrow-select" }
+arrow-string = { version = "35.0.0", path = "../arrow-string" }
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"], optional = true }
pyo3 = { version = "0.18", default-features = false, optional = true }
diff --git a/arrow/README.md b/arrow/README.md
index 6d0772e2d..479213833 100644
--- a/arrow/README.md
+++ b/arrow/README.md
@@ -35,7 +35,7 @@ This crate is tested with the latest stable version of Rust.
We do not currently
The arrow crate follows the [SemVer
standard](https://doc.rust-lang.org/cargo/reference/semver.html) defined by
Cargo and works well within the Rust crate ecosystem.
-However, for historical reasons, this crate uses versions with major numbers
greater than `0.x` (e.g. `34.0.0`), unlike many other crates in the Rust
ecosystem which spend extended time releasing versions `0.x` to signal planned
ongoing API changes. Minor arrow releases contain only compatible changes,
while major releases may contain breaking API changes.
+However, for historical reasons, this crate uses versions with major numbers
greater than `0.x` (e.g. `35.0.0`), unlike many other crates in the Rust
ecosystem which spend extended time releasing versions `0.x` to signal planned
ongoing API changes. Minor arrow releases contain only compatible changes,
while major releases may contain breaking API changes.
## Feature Flags
diff --git a/dev/release/README.md b/dev/release/README.md
index 70921dd02..c7c14b8d5 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -70,7 +70,7 @@ git pull
git checkout -b <RELEASE_BRANCH>
# Update versions. Make sure to run it before the next step since we do not
want CHANGELOG-old.md affected.
-sed -i '' -e 's/14.0.0/34.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' |
grep -v CHANGELOG.md`
+sed -i '' -e 's/14.0.0/35.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' |
grep -v CHANGELOG.md`
git commit -a -m 'Update version'
# Copy the content of CHANGELOG.md to the beginning of CHANGELOG-old.md
diff --git a/dev/release/file_release_pr.sh b/dev/release/file_release_pr.sh
index 2db3d7986..081b7c436 100644
--- a/dev/release/file_release_pr.sh
+++ b/dev/release/file_release_pr.sh
@@ -25,8 +25,8 @@
set -e
-FUTURE_RELEASE="29.0.0"
-ISSUE_NUMBER=3216
+FUTURE_RELEASE="35.0.0"
+ISSUE_NUMBER=3830
TITLE="Update version to \`$FUTURE_RELEASE\` and update \`CHANGELOG\`"
BODY="# Which issue does this PR close?\n\nCloses #$ISSUE_NUMBER.\n\n#
Rationale for this change\nPrepare for biweekly release\n\n# What changes are
included in this PR?\n\n# Are there any user-facing changes?\nYes"
diff --git a/dev/release/update_change_log.sh b/dev/release/update_change_log.sh
index 920498905..b01d190a4 100755
--- a/dev/release/update_change_log.sh
+++ b/dev/release/update_change_log.sh
@@ -29,8 +29,8 @@
set -e
-SINCE_TAG="33.0.0"
-FUTURE_RELEASE="34.0.0"
+SINCE_TAG="34.0.0"
+FUTURE_RELEASE="35.0.0"
SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)"
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 87f552fbd..a822a966f 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet"
-version = "34.0.0"
+version = "35.0.0"
license = "Apache-2.0"
description = "Apache Parquet implementation in Rust"
homepage = "https://github.com/apache/arrow-rs"
@@ -35,14 +35,14 @@ ahash = { version = "0.8", default-features = false,
features = ["compile-time-r
ahash = { version = "0.8", default-features = false, features =
["runtime-rng"] }
[dependencies]
-arrow-array = { version = "34.0.0", path = "../arrow-array", default-features
= false, optional = true }
-arrow-buffer = { version = "34.0.0", path = "../arrow-buffer",
default-features = false, optional = true }
-arrow-cast = { version = "34.0.0", path = "../arrow-cast", default-features =
false, optional = true }
-arrow-csv = { version = "34.0.0", path = "../arrow-csv", default-features =
false, optional = true }
-arrow-data = { version = "34.0.0", path = "../arrow-data", default-features =
false, optional = true }
-arrow-schema = { version = "34.0.0", path = "../arrow-schema",
default-features = false, optional = true }
-arrow-select = { version = "34.0.0", path = "../arrow-select",
default-features = false, optional = true }
-arrow-ipc = { version = "34.0.0", path = "../arrow-ipc", default-features =
false, optional = true }
+arrow-array = { version = "35.0.0", path = "../arrow-array", default-features
= false, optional = true }
+arrow-buffer = { version = "35.0.0", path = "../arrow-buffer",
default-features = false, optional = true }
+arrow-cast = { version = "35.0.0", path = "../arrow-cast", default-features =
false, optional = true }
+arrow-csv = { version = "35.0.0", path = "../arrow-csv", default-features =
false, optional = true }
+arrow-data = { version = "35.0.0", path = "../arrow-data", default-features =
false, optional = true }
+arrow-schema = { version = "35.0.0", path = "../arrow-schema",
default-features = false, optional = true }
+arrow-select = { version = "35.0.0", path = "../arrow-select",
default-features = false, optional = true }
+arrow-ipc = { version = "35.0.0", path = "../arrow-ipc", default-features =
false, optional = true }
object_store = { version = "0.5", path = "../object_store", default-features =
false, optional = true }
bytes = { version = "1.1", default-features = false, features = ["std"] }
@@ -76,7 +76,7 @@ flate2 = { version = "1.0", default-features = false,
features = ["rust_backend"
lz4 = { version = "1.23", default-features = false }
zstd = { version = "0.12", default-features = false }
serde_json = { version = "1.0", features = ["std"], default-features = false }
-arrow = { path = "../arrow", version = "34.0.0", default-features = false,
features = ["ipc", "test_utils", "prettyprint", "json"] }
+arrow = { path = "../arrow", version = "35.0.0", default-features = false,
features = ["ipc", "test_utils", "prettyprint", "json"] }
tokio = { version = "1.0", default-features = false, features = ["macros",
"rt", "io-util", "fs"] }
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"] }
diff --git a/parquet_derive/Cargo.toml b/parquet_derive/Cargo.toml
index cb16846b0..e41ba1908 100644
--- a/parquet_derive/Cargo.toml
+++ b/parquet_derive/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet_derive"
-version = "34.0.0"
+version = "35.0.0"
license = "Apache-2.0"
description = "Derive macros for the Rust implementation of Apache Parquet"
homepage = "https://github.com/apache/arrow-rs"
@@ -35,4 +35,4 @@ proc-macro = true
proc-macro2 = { version = "1.0", default-features = false }
quote = { version = "1.0", default-features = false }
syn = { version = "1.0", features = ["extra-traits"] }
-parquet = { path = "../parquet", version = "34.0.0", default-features = false }
+parquet = { path = "../parquet", version = "35.0.0", default-features = false }
diff --git a/parquet_derive/README.md b/parquet_derive/README.md
index f3f66c45b..2bed2d550 100644
--- a/parquet_derive/README.md
+++ b/parquet_derive/README.md
@@ -32,8 +32,8 @@ Add this to your Cargo.toml:
```toml
[dependencies]
-parquet = "34.0.0"
-parquet_derive = "34.0.0"
+parquet = "35.0.0"
+parquet_derive = "35.0.0"
```
and this to your crate root:
diff --git a/parquet_derive_test/Cargo.toml b/parquet_derive_test/Cargo.toml
index 33f7675a3..cca778d6f 100644
--- a/parquet_derive_test/Cargo.toml
+++ b/parquet_derive_test/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet_derive_test"
-version = "34.0.0"
+version = "35.0.0"
license = "Apache-2.0"
description = "Integration test package for parquet-derive"
homepage = "https://github.com/apache/arrow-rs"
@@ -29,6 +29,6 @@ publish = false
rust-version = "1.62"
[dependencies]
-parquet = { path = "../parquet", version = "34.0.0", default-features = false }
-parquet_derive = { path = "../parquet_derive", version = "34.0.0",
default-features = false }
+parquet = { path = "../parquet", version = "35.0.0", default-features = false }
+parquet_derive = { path = "../parquet_derive", version = "35.0.0",
default-features = false }
chrono = { version="0.4.23", default-features = false, features = [ "clock" ] }