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

[53.0.0_maintenance] Update version to 53.4.1 + changelog #7235

Merged
merged 3 commits into from
Mar 4, 2025
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
17 changes: 17 additions & 0 deletions CHANGELOG-old.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@
# Historical Changelog


## [53.4.0](https://github.com/apache/arrow-rs/tree/53.4.0) (2025-01-14)

[Full Changelog](https://github.com/apache/arrow-rs/compare/53.3.0...53.4.0)

**Merged pull requests:**

* fix clippy (#6791) (#6940)
* fix: decimal conversion looses value on lower precision (#6836) (#6936)
* perf: Use Cow in get_format_string in FFI_ArrowSchema (#6853) (#6937)
* fix: Encoding of List offsets was incorrect when slice offsets begin …
* [arrow-cast] Support cast numeric to string view (alternate) (#6816) (#…
* Enable matching temporal as from_type to Utf8View (#6872) (#6956)
* [arrow-cast] Support cast boolean from/to string view (#6822) (#6957)
* [53.0.0_maintenance] Fix CI (#6964)
* Add Array::shrink_to_fit(&mut self) to 53.4.0 (#6790) (#6817)
*

## [53.3.0](https://github.com/apache/arrow-rs/tree/53.3.0) (2024-11-17)

[Full Changelog](https://github.com/apache/arrow-rs/compare/53.2.0...53.3.0)
Expand Down
16 changes: 4 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,10 @@

# Changelog

## [53.4.0](https://github.com/apache/arrow-rs/tree/53.4.0) (2025-01-14)
## [53.4.1](https://github.com/apache/arrow-rs/tree/53.4.1) (2025-03-04)

[Full Changelog](https://github.com/apache/arrow-rs/compare/53.3.0...53.4.0)
[Full Changelog](https://github.com/apache/arrow-rs/compare/53.4.0...54.1.0)

**Merged pull requests:**
**Fixed bugs:**

* fix clippy (#6791) (#6940)
* fix: decimal conversion looses value on lower precision (#6836) (#6936)
* perf: Use Cow in get_format_string in FFI_ArrowSchema (#6853) (#6937)
* fix: Encoding of List offsets was incorrect when slice offsets begin …
* [arrow-cast] Support cast numeric to string view (alternate) (#6816) (#…
* Enable matching temporal as from_type to Utf8View (#6872) (#6956)
* [arrow-cast] Support cast boolean from/to string view (#6822) (#6957)
* [53.0.0_maintenance] Fix CI (#6964)
* Add Array::shrink_to_fit(&mut self) to 53.4.0 (#6790) (#6817) (#6962)
- Use chrono >= 0.4.34, < 0.4.40 to avoid breaking [\#7233](https://github.com/apache/arrow-rs/pull/7233)
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.4.0"
version = "53.4.1"
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.4.0", path = "./arrow", default-features = false }
arrow-arith = { version = "53.4.0", path = "./arrow-arith" }
arrow-array = { version = "53.4.0", path = "./arrow-array" }
arrow-buffer = { version = "53.4.0", path = "./arrow-buffer" }
arrow-cast = { version = "53.4.0", path = "./arrow-cast" }
arrow-csv = { version = "53.4.0", path = "./arrow-csv" }
arrow-data = { version = "53.4.0", path = "./arrow-data" }
arrow-ipc = { version = "53.4.0", path = "./arrow-ipc" }
arrow-json = { version = "53.4.0", path = "./arrow-json" }
arrow-ord = { version = "53.4.0", path = "./arrow-ord" }
arrow-row = { version = "53.4.0", path = "./arrow-row" }
arrow-schema = { version = "53.4.0", path = "./arrow-schema" }
arrow-select = { version = "53.4.0", path = "./arrow-select" }
arrow-string = { version = "53.4.0", path = "./arrow-string" }
parquet = { version = "53.4.0", path = "./parquet", default-features = false }
arrow = { version = "53.4.1", path = "./arrow", default-features = false }
arrow-arith = { version = "53.4.1", path = "./arrow-arith" }
arrow-array = { version = "53.4.1", path = "./arrow-array" }
arrow-buffer = { version = "53.4.1", path = "./arrow-buffer" }
arrow-cast = { version = "53.4.1", path = "./arrow-cast" }
arrow-csv = { version = "53.4.1", path = "./arrow-csv" }
arrow-data = { version = "53.4.1", path = "./arrow-data" }
arrow-ipc = { version = "53.4.1", path = "./arrow-ipc" }
arrow-json = { version = "53.4.1", path = "./arrow-json" }
arrow-ord = { version = "53.4.1", path = "./arrow-ord" }
arrow-row = { version = "53.4.1", path = "./arrow-row" }
arrow-schema = { version = "53.4.1", path = "./arrow-schema" }
arrow-select = { version = "53.4.1", path = "./arrow-select" }
arrow-string = { version = "53.4.1", path = "./arrow-string" }
parquet = { version = "53.4.1", path = "./parquet", default-features = false }

chrono = { version = ">= 0.4.34, < 0.4.40", default-features = false, features = ["clock"] }
Loading