This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch 48.0.0_maintenance
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/48.0.0_maintenance by this
push:
new b60fc7bb09 Update version to `48.0.1` and add README (#5062)
b60fc7bb09 is described below
commit b60fc7bb09ada1385d3542b784fff2915fbc9cff
Author: Andrew Lamb <[email protected]>
AuthorDate: Thu Nov 9 15:18:39 2023 -0500
Update version to `48.0.1` and add README (#5062)
* Update version to 48.0.1
* Update version to 48.0.1
* Add 48.0.1 CHANGELOG
---
CHANGELOG.md | 14 ++++++++++++++
Cargo.toml | 32 ++++++++++++++++----------------
2 files changed, 30 insertions(+), 16 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c5351708c..fc76a0dcdd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,20 @@
# Changelog
+## [48.0.1](https://github.com/apache/arrow-rs/tree/48.0.1) (2023-11-09)
+
+[Full Changelog](https://github.com/apache/arrow-rs/compare/48.0.0...48.0.1)
+
+**Fixed bugs:**
+
+- RowSelection::intersection Produces Invalid RowSelection
[\#5036](https://github.com/apache/arrow-rs/issues/5036)
[[parquet](https://github.com/apache/arrow-rs/labels/parquet)]
+- Regression when serializing large json numbers
[\#5038](https://github.com/apache/arrow-rs/issues/5038)
[[arrow](https://github.com/apache/arrow-rs/labels/arrow)]
+
+**Merged pull requests:**
+- Backport CI fixes to 48.0.0_maintenance
[\#5061](https://github.com/apache/arrow-rs/pull/5061)
+- Backport: Fix RowSelection::intersection (#5036) (#5041)
[\#5060](https://github.com/apache/arrow-rs/pull/5060)
+- Backport: Fix serialization of large integers (#5038) (#5042) to
48.0.0_maintenance [\#5059](https://github.com/apache/arrow-rs/pull/5059)
+
## [48.0.0](https://github.com/apache/arrow-rs/tree/48.0.0) (2023-10-18)
[Full Changelog](https://github.com/apache/arrow-rs/compare/47.0.0...48.0.0)
diff --git a/Cargo.toml b/Cargo.toml
index d59a5af68a..68e024c552 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -62,7 +62,7 @@ exclude = [
]
[workspace.package]
-version = "48.0.0"
+version = "48.0.1"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
@@ -77,20 +77,20 @@ edition = "2021"
rust-version = "1.62"
[workspace.dependencies]
-arrow = { version = "48.0.0", path = "./arrow", default-features = false }
-arrow-arith = { version = "48.0.0", path = "./arrow-arith" }
-arrow-array = { version = "48.0.0", path = "./arrow-array" }
-arrow-buffer = { version = "48.0.0", path = "./arrow-buffer" }
-arrow-cast = { version = "48.0.0", path = "./arrow-cast" }
-arrow-csv = { version = "48.0.0", path = "./arrow-csv" }
-arrow-data = { version = "48.0.0", path = "./arrow-data" }
-arrow-ipc = { version = "48.0.0", path = "./arrow-ipc" }
-arrow-json = { version = "48.0.0", path = "./arrow-json" }
-arrow-ord = { version = "48.0.0", path = "./arrow-ord" }
-arrow-row = { version = "48.0.0", path = "./arrow-row" }
-arrow-schema = { version = "48.0.0", path = "./arrow-schema" }
-arrow-select = { version = "48.0.0", path = "./arrow-select" }
-arrow-string = { version = "48.0.0", path = "./arrow-string" }
-parquet = { version = "48.0.0", path = "./parquet", default-features = false }
+arrow = { version = "48.0.1", path = "./arrow", default-features = false }
+arrow-arith = { version = "48.0.1", path = "./arrow-arith" }
+arrow-array = { version = "48.0.1", path = "./arrow-array" }
+arrow-buffer = { version = "48.0.1", path = "./arrow-buffer" }
+arrow-cast = { version = "48.0.1", path = "./arrow-cast" }
+arrow-csv = { version = "48.0.1", path = "./arrow-csv" }
+arrow-data = { version = "48.0.1", path = "./arrow-data" }
+arrow-ipc = { version = "48.0.1", path = "./arrow-ipc" }
+arrow-json = { version = "48.0.1", path = "./arrow-json" }
+arrow-ord = { version = "48.0.1", path = "./arrow-ord" }
+arrow-row = { version = "48.0.1", path = "./arrow-row" }
+arrow-schema = { version = "48.0.1", path = "./arrow-schema" }
+arrow-select = { version = "48.0.1", path = "./arrow-select" }
+arrow-string = { version = "48.0.1", path = "./arrow-string" }
+parquet = { version = "48.0.1", path = "./parquet", default-features = false }
chrono = { version = "0.4.31", default-features = false, features = ["clock"] }