Skip to content

Commit

Permalink
Make ArrayRepresentationBase pub
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Sep 3, 2024
1 parent e37cffa commit 084162d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `[async_]store_set_partial_values` no longer truncates
- this could corrupt values depending on the order of `set_partial_values` calls
- Fix `FilesystemStore::fspath_to_key` on windows
- Make `ArrayRepresentationBase` pub so that `{Array,Chunk}Representation` are not opaque

## [0.16.4] - 2024-08-22

Expand Down
4 changes: 3 additions & 1 deletion zarrs/src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ pub use self::{
array_bytes::{ArrayBytes, ArrayBytesError, RawBytes, RawBytesOffsets},
array_errors::{ArrayCreateError, ArrayError},
array_metadata_options::ArrayMetadataOptions,
array_representation::{ArrayRepresentation, ArraySize, ChunkRepresentation},
array_representation::{
ArrayRepresentation, ArrayRepresentationBase, ArraySize, ChunkRepresentation,
},
bytes_representation::BytesRepresentation,
chunk_grid::ChunkGrid,
chunk_key_encoding::{ChunkKeyEncoding, ChunkKeySeparator},
Expand Down

0 comments on commit 084162d

Please sign in to comment.