From 5bd03785ee0f2988b0ab9ce671b3a73d04de8906 Mon Sep 17 00:00:00 2001 From: Connor Sanders <170039284+jecsand838@users.noreply.github.com> Date: Thu, 23 Oct 2025 11:01:57 -0500 Subject: [PATCH 1/3] Updated `arrow-avro` `README.md` versions to 57 --- arrow-avro/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrow-avro/README.md b/arrow-avro/README.md index f89fc97d242f..4382f03b432c 100644 --- a/arrow-avro/README.md +++ b/arrow-avro/README.md @@ -44,14 +44,14 @@ This crate provides: ```toml [dependencies] -arrow-avro = "56" +arrow-avro = "57" ```` Disable defaults and pick only what you need (see **Feature Flags**): ```toml [dependencies] -arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy"] } +arrow-avro = { version = "57", default-features = false, features = ["deflate", "snappy"] } ``` --- From d92b4624813771c3ab5662aaf9c5ec61c1acfce1 Mon Sep 17 00:00:00 2001 From: Connor Sanders <170039284+jecsand838@users.noreply.github.com> Date: Thu, 23 Oct 2025 19:50:42 -0500 Subject: [PATCH 2/3] Update arrow-avro/README.md Co-authored-by: Andrew Lamb --- arrow-avro/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-avro/README.md b/arrow-avro/README.md index 4382f03b432c..4cd4be773bcd 100644 --- a/arrow-avro/README.md +++ b/arrow-avro/README.md @@ -44,7 +44,7 @@ This crate provides: ```toml [dependencies] -arrow-avro = "57" +arrow-avro = "57.0.0" ```` Disable defaults and pick only what you need (see **Feature Flags**): From 8c4654474c89bf8a16fecc13e145f08e6bac4b74 Mon Sep 17 00:00:00 2001 From: Connor Sanders <170039284+jecsand838@users.noreply.github.com> Date: Thu, 23 Oct 2025 19:50:50 -0500 Subject: [PATCH 3/3] Update arrow-avro/README.md Co-authored-by: Andrew Lamb --- arrow-avro/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-avro/README.md b/arrow-avro/README.md index 4cd4be773bcd..85fd76094755 100644 --- a/arrow-avro/README.md +++ b/arrow-avro/README.md @@ -51,7 +51,7 @@ Disable defaults and pick only what you need (see **Feature Flags**): ```toml [dependencies] -arrow-avro = { version = "57", default-features = false, features = ["deflate", "snappy"] } +arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy"] } ``` ---