Skip to content

Commit

Permalink
fix(docs): mark rectangular chunk grid as experimental since it is …
Browse files Browse the repository at this point in the history
…based on a draft ZEP
  • Loading branch information
LDeakin committed Jan 17, 2025
1 parent b493c5e commit aecaffb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- New clippy lints
- Mark `String` and `Bytes` data types as experimental in their docs
- Mark `rectangular` chunk grid as experimental since it is based on a draft ZEP

## [0.19.0] - 2025-01-10

Expand Down
8 changes: 4 additions & 4 deletions zarrs/doc/status/chunk_grids.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
| Chunk Grid | ZEP | V3 | V2 | Feature Flag |
| ------------- | --------- | ------- | ------- | ------------ |
| [regular] | [ZEP0001] | ✓ | ✓ | |
| [rectangular] | [ZEP0003] | ✓ | | |
| Chunk Grid | ZEP | V3 | V2 | Feature Flag |
| ---------------------------- | ----------------- | ------- | ------- | ------------ |
| [regular] | [ZEP0001] | ✓ | ✓ | |
| [rectangular] (experimental) | [ZEP0003] (draft) | ✓ | | |

[regular]: crate::array::chunk_grid::RegularChunkGrid
[rectangular]: crate::array::chunk_grid::RectangularChunkGrid
Expand Down
2 changes: 2 additions & 0 deletions zarrs/src/array/chunk_grid/rectangular.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! The `rectangular` chunk grid.
//!
//! This chunk grid is considered experimental as it is based on a draft Zarr enhancement proposal.
//!
//! See <https://zarr.dev/zeps/draft/ZEP0003.html>.
use std::num::NonZeroU64;
Expand Down

0 comments on commit aecaffb

Please sign in to comment.