From a9f2573eac60e6c95b53eade8cc8eba82b518f60 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 4 Mar 2025 12:57:25 -0500 Subject: [PATCH 1/3] Update version to 53.4.1 --- Cargo.toml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f65ec6d84f1..780299e55da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] @@ -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"] } From 683f5b31b8d431950d37280a91508a72b44956fb Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 4 Mar 2025 13:05:41 -0500 Subject: [PATCH 2/3] Add changelog --- CHANGELOG-old.md | 17 +++++++++++++++++ CHANGELOG.md | 16 ++++------------ 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/CHANGELOG-old.md b/CHANGELOG-old.md index 8d0e169129b..669fbaece61 100644 --- a/CHANGELOG-old.md +++ b/CHANGELOG-old.md @@ -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) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e1f5b88c8c..6e64f0f902b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.0) (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) \ No newline at end of file +- Use chrono >= 0.4.34, < 0.4.40 to avoid breaking [\#7233](https://github.com/apache/arrow-rs/pull/7233) \ No newline at end of file From b8f7d52d206a9c68f44c3e6dcdd13cc148891b69 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 4 Mar 2025 13:06:34 -0500 Subject: [PATCH 3/3] fix --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e64f0f902b..83bcf8e7d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ # Changelog -## [53.4.1](https://github.com/apache/arrow-rs/tree/53.4.0) (2025-03-04) +## [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.4.0...54.1.0)