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

Prepare for 53.2.0 release #6603

Merged
merged 9 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
223 changes: 105 additions & 118 deletions CHANGELOG-old.md

Large diffs are not rendered by default.

147 changes: 47 additions & 100 deletions CHANGELOG.md

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ exclude = [
]

[workspace.package]
version = "53.1.0"
version = "53.2.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
Expand All @@ -77,20 +77,20 @@ edition = "2021"
rust-version = "1.62"

[workspace.dependencies]
arrow = { version = "53.1.0", path = "./arrow", default-features = false }
arrow-arith = { version = "53.1.0", path = "./arrow-arith" }
arrow-array = { version = "53.1.0", path = "./arrow-array" }
arrow-buffer = { version = "53.1.0", path = "./arrow-buffer" }
arrow-cast = { version = "53.1.0", path = "./arrow-cast" }
arrow-csv = { version = "53.1.0", path = "./arrow-csv" }
arrow-data = { version = "53.1.0", path = "./arrow-data" }
arrow-ipc = { version = "53.1.0", path = "./arrow-ipc" }
arrow-json = { version = "53.1.0", path = "./arrow-json" }
arrow-ord = { version = "53.1.0", path = "./arrow-ord" }
arrow-row = { version = "53.1.0", path = "./arrow-row" }
arrow-schema = { version = "53.1.0", path = "./arrow-schema" }
arrow-select = { version = "53.1.0", path = "./arrow-select" }
arrow-string = { version = "53.1.0", path = "./arrow-string" }
parquet = { version = "53.1.0", path = "./parquet", default-features = false }
arrow = { version = "53.2.0", path = "./arrow", default-features = false }
arrow-arith = { version = "53.2.0", path = "./arrow-arith" }
arrow-array = { version = "53.2.0", path = "./arrow-array" }
arrow-buffer = { version = "53.2.0", path = "./arrow-buffer" }
arrow-cast = { version = "53.2.0", path = "./arrow-cast" }
arrow-csv = { version = "53.2.0", path = "./arrow-csv" }
arrow-data = { version = "53.2.0", path = "./arrow-data" }
arrow-ipc = { version = "53.2.0", path = "./arrow-ipc" }
arrow-json = { version = "53.2.0", path = "./arrow-json" }
arrow-ord = { version = "53.2.0", path = "./arrow-ord" }
arrow-row = { version = "53.2.0", path = "./arrow-row" }
arrow-schema = { version = "53.2.0", path = "./arrow-schema" }
arrow-select = { version = "53.2.0", path = "./arrow-select" }
arrow-string = { version = "53.2.0", path = "./arrow-string" }
parquet = { version = "53.2.0", path = "./parquet", default-features = false }

chrono = { version = "0.4.34", default-features = false, features = ["clock"] }
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ Planned Release Schedule
| ---------------- | -------- | --------------------------------------- |
| Sep 2024 | `53.0.0` | Major, potentially breaking API changes |
| Oct 2024 | `53.1.0` | Minor, NO breaking API changes |
| Nov 2024 | `53.2.0` | Minor, NO breaking API changes |
| Oct 2024 | `53.2.0` | Minor, NO breaking API changes |
| Nov 2024 | `53.3.0` | Minor, NO breaking API changes |
| Dec 2024 | `54.0.0` | Major, potentially breaking API changes |

[this ticket]: https://github.com/apache/arrow-rs/issues/5368
Expand Down
2 changes: 1 addition & 1 deletion arrow-flight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
arrow-flight = "53.1.0"
arrow-flight = "53.2.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
4 changes: 2 additions & 2 deletions dev/release/update_change_log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

set -e

SINCE_TAG="53.0.0"
FUTURE_RELEASE="53.1.0"
SINCE_TAG="53.1.0"
FUTURE_RELEASE="53.2.0"

SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)"
Expand Down
Loading