This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 48623180a5 Fix duplicate link references in README (#7020)
48623180a5 is described below
commit 48623180a56e4f237bd5c614cd2c371ef2e710f9
Author: Jeffrey Vo <[email protected]>
AuthorDate: Sun Jan 26 02:19:17 2025 +1100
Fix duplicate link references in README (#7020)
---
README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 7a3dc1dd24..7be578278b 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ as the [`parquet`] and [`parquet-derive`] crates.
This crate releases every month. We release new major versions (with
potentially
breaking API changes) at most once a quarter, and release incremental minor
-versions in the intervening months. See [this ticket] for more details.
+versions in the intervening months. See [ticket #5368] for more details.
To keep our maintenance burden down, we do regularly scheduled releases (major
and minor) from the `main` branch. How we handle PRs with breaking API changes
@@ -72,7 +72,7 @@ Planned Release Schedule
| Feb 2025 | `54.2.0` | Minor, NO breaking API changes |
| Mar 2025 | `55.0.0` | Major, potentially breaking API changes |
-[this ticket]: https://github.com/apache/arrow-rs/issues/5368
+[ticket #5368]: https://github.com/apache/arrow-rs/issues/5368
[semantic versioning]: https://semver.org/
### `object_store` crate
@@ -96,9 +96,9 @@ In general, use panics for bad states that are unreachable,
unrecoverable or har
For those caused by invalid user input, however, we prefer to report that
invalidity
gracefully as an error result instead of panicking. In general, invalid input
should result
in an `Error` as soon as possible. It _is_ ok for code paths after validation
to assume
-validation has already occurred and panic if not. See [this ticket] for more
nuances.
+validation has already occurred and panic if not. See [ticket #6737] for more
nuances.
-[this ticket]: https://github.com/apache/arrow-rs/issues/6737
+[ticket #6737]: https://github.com/apache/arrow-rs/issues/6737
### Deprecation Guidelines