Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions to 29.0.0 and update CHANGELOG #3315

Merged
merged 7 commits into from Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
102 changes: 102 additions & 0 deletions CHANGELOG-old.md

Large diffs are not rendered by default.

170 changes: 83 additions & 87 deletions CHANGELOG.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions arrow-array/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-array"
version = "28.0.0"
version = "29.0.0"
description = "Array abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down Expand Up @@ -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 = "28.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-data = { version = "29.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"] }
Expand Down
2 changes: 1 addition & 1 deletion arrow-buffer/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-buffer"
version = "28.0.0"
version = "29.0.0"
description = "Buffer abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down
12 changes: 6 additions & 6 deletions arrow-cast/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-cast"
version = "28.0.0"
version = "29.0.0"
description = "Cast kernel and utilities for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-select = { version = "28.0.0", path = "../arrow-select" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-select = { version = "29.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"] }
Expand Down
12 changes: 6 additions & 6 deletions arrow-csv/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-csv"
version = "28.0.0"
version = "29.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"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "28.0.0", path = "../arrow-cast" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
csv = { version = "1.1", default-features = false }
lazy_static = { version = "1.4", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions arrow-data/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-data"
version = "28.0.0"
version = "29.0.0"
description = "Array data abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down Expand Up @@ -45,8 +45,8 @@ force_validate = []

[dependencies]

arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }

num = { version = "0.4", default-features = false, features = ["std"] }
half = { version = "2.1", default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions arrow-flight/Cargo.toml
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-flight"
description = "Apache Arrow Flight"
version = "28.0.0"
version = "29.0.0"
edition = "2021"
rust-version = "1.62"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
Expand All @@ -27,10 +27,10 @@ repository = "https://github.com/apache/arrow-rs"
license = "Apache-2.0"

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-ipc = { version = "28.0.0", path = "../arrow-ipc" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-ipc = { version = "29.0.0", path = "../arrow-ipc" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
base64 = { version = "0.13", default-features = false }
tonic = { version = "0.8", default-features = false, features = ["transport", "codegen", "prost"] }
bytes = { version = "1", default-features = false }
Expand All @@ -45,7 +45,7 @@ default = []
flight-sql-experimental = ["prost-types"]

[dev-dependencies]
arrow = { version = "28.0.0", path = "../arrow", features = ["prettyprint"] }
arrow = { version = "29.0.0", path = "../arrow", features = ["prettyprint"] }
tempfile = "3.3"
tokio-stream = { version = "0.1", features = ["net"] }
tower = "0.4.13"
Expand Down
2 changes: 1 addition & 1 deletion arrow-flight/README.md
Expand Up @@ -27,7 +27,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
arrow-flight = "28.0.0"
arrow-flight = "29.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.
Expand Down
6 changes: 3 additions & 3 deletions arrow-integration-test/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-integration-test"
version = "28.0.0"
version = "29.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"
Expand All @@ -38,8 +38,8 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow = { version = "28.0.0", path = "../arrow", default-features = false }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow = { version = "29.0.0", path = "../arrow", default-features = false }
arrow-buffer = { version = "29.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"] }
Expand Down
2 changes: 1 addition & 1 deletion arrow-integration-testing/Cargo.toml
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-integration-testing"
description = "Binaries used in the Arrow integration tests (NOT PUBLISHED TO crates.io)"
version = "28.0.0"
version = "29.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
Expand Down
12 changes: 6 additions & 6 deletions arrow-ipc/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-ipc"
version = "28.0.0"
version = "29.0.0"
description = "Support for the Arrow IPC format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "28.0.0", path = "../arrow-cast" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
flatbuffers = { version = "22.9.2", default-features = false, features = ["thiserror"] }
lz4 = { version = "1.23", default-features = false, optional = true }
zstd = { version = "0.12.0", default-features = false, optional = true }
Expand Down
12 changes: 6 additions & 6 deletions arrow-json/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-json"
version = "28.0.0"
version = "29.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"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "28.0.0", path = "../arrow-cast" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.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"] }
Expand Down
12 changes: 6 additions & 6 deletions arrow-ord/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-ord"
version = "28.0.0"
version = "29.0.0"
description = "Ordering kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-select = { version = "28.0.0", path = "../arrow-select" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-select = { version = "29.0.0", path = "../arrow-select" }
num = { version = "0.4", default-features = false, features = ["std"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions arrow-pyarrow-integration-testing/Cargo.toml
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-pyarrow-integration-testing"
description = ""
version = "28.0.0"
version = "29.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
Expand All @@ -32,7 +32,7 @@ name = "arrow_pyarrow_integration_testing"
crate-type = ["cdylib"]

[dependencies]
arrow = { path = "../arrow", version = "28.0.0", features = ["pyarrow"] }
arrow = { path = "../arrow", version = "29.0.0", features = ["pyarrow"] }
pyo3 = { version = "0.17", features = ["extension-module"] }

[package.metadata.maturin]
Expand Down
2 changes: 1 addition & 1 deletion arrow-schema/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-schema"
version = "28.0.0"
version = "29.0.0"
description = "Defines the logical types for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down
10 changes: 5 additions & 5 deletions arrow-select/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-select"
version = "28.0.0"
version = "29.0.0"
description = "Selection kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
num = { version = "0.4", default-features = false, features = ["std"] }

[features]
Expand Down
10 changes: 5 additions & 5 deletions arrow-string/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-string"
version = "28.0.0"
version = "29.0.0"
description = "String kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-array = { version = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
regex = { version = "1.7.0", default-features = false, features = ["std", "unicode", "perf"] }
regex-syntax = { version = "0.6.27", default-features = false, features = ["unicode"] }

Expand Down
24 changes: 12 additions & 12 deletions arrow/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow"
version = "28.0.0"
version = "29.0.0"
description = "Rust implementation of Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down Expand Up @@ -45,17 +45,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 = "28.0.0", path = "../arrow-array" }
arrow-buffer = { version = "28.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "28.0.0", path = "../arrow-cast" }
arrow-csv = { version = "28.0.0", path = "../arrow-csv", optional = true }
arrow-data = { version = "28.0.0", path = "../arrow-data" }
arrow-ipc = { version = "28.0.0", path = "../arrow-ipc", optional = true }
arrow-json = { version = "28.0.0", path = "../arrow-json", optional = true }
arrow-ord = { version = "28.0.0", path = "../arrow-ord" }
arrow-schema = { version = "28.0.0", path = "../arrow-schema" }
arrow-select = { version = "28.0.0", path = "../arrow-select" }
arrow-string = { version = "28.0.0", path = "../arrow-string" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-csv = { version = "29.0.0", path = "../arrow-csv", optional = true }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-ipc = { version = "29.0.0", path = "../arrow-ipc", optional = true }
arrow-json = { version = "29.0.0", path = "../arrow-json", optional = true }
arrow-ord = { version = "29.0.0", path = "../arrow-ord" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-select = { version = "29.0.0", path = "../arrow-select" }
arrow-string = { version = "29.0.0", path = "../arrow-string" }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"], optional = true }
num = { version = "0.4", default-features = false, features = ["std"] }
half = { version = "2.1", default-features = false, features = ["num-traits"] }
Expand Down
2 changes: 1 addition & 1 deletion arrow/README.md
Expand Up @@ -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. `28.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. `29.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

Expand Down
2 changes: 1 addition & 1 deletion dev/release/README.md
Expand Up @@ -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/28.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' | grep -v CHANGELOG.md`
sed -i '' -e 's/14.0.0/29.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
Expand Down
4 changes: 2 additions & 2 deletions dev/release/file_release_pr.sh
Expand Up @@ -25,8 +25,8 @@

set -e

FUTURE_RELEASE="23.0.0"
ISSUE_NUMBER=2665
FUTURE_RELEASE="29.0.0"
ISSUE_NUMBER=3216

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"
Expand Down