This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 1c869214e2c Minor: Document object store release cadence (#5750)
1c869214e2c is described below
commit 1c869214e2cf25959750756a65a0c042444e5d5d
Author: Andrew Lamb <[email protected]>
AuthorDate: Sat May 11 07:09:53 2024 -0400
Minor: Document object store release cadence (#5750)
---
README.md | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index dc7d481f608..6f279c20810 100644
--- a/README.md
+++ b/README.md
@@ -36,8 +36,10 @@ The current development version the API documentation in
this repo can be found
## Release Versioning and Schedule
+### `arrow` and `parquet` crates
+
The Arrow Rust project releases approximately monthly and follows [Semantic
-Versioning](https://semver.org/).
+Versioning].
Due to available maintainer and testing bandwidth, `arrow` crates (`arrow`,
`arrow-flight`, etc.) are released on the same schedule with the same versions
@@ -57,6 +59,15 @@ For example:
| Sep 2024 | `53.0.0` | Major, potentially breaking API changes |
[this ticket]: https://github.com/apache/arrow-rs/issues/5368
+[semantic versioning]: https://semver.org/
+
+### `object_store` crate
+
+The [`object_store`] crate is released independently of the `arrow` and
+`parquet` crates and follows [Semantic Versioning]. We aim to release new
+versions approximately every 2 months.
+
+[`object_store`]: https://crates.io/crates/object_store
## Related Projects