Skip to content

Commit

Permalink
Prepare for 53.2.0 release (apache#6603)
Browse files Browse the repository at this point in the history
* Update version to 53.2.0

* update changelog

* Update CHANGELOG

* updates

* update

* updates

* Updates
  • Loading branch information
alamb authored Oct 21, 2024
1 parent c6048d5 commit 10c4059
Show file tree
Hide file tree
Showing 6 changed files with 173 additions and 238 deletions.
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

0 comments on commit 10c4059

Please sign in to comment.