-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
120fa1f
commit 65fab74
Showing
3 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# zarrita | ||
|
||
## 0.3.0 | ||
|
||
### Minor Changes | ||
|
||
- feat!: Re-export `@zarrita/*` under `zarrita`. ([#89](https://github.com/manzt/zarrita.js/pull/89)) | ||
|
||
This is a BREAKING change. The `zarrita` package is now a wrapper around the `@zarrita/*` modules. | ||
|
||
```javascript | ||
import * as zarr from "zarrita"; | ||
|
||
const store = new zarr.FetchStore("http://localhost:8080/data.zarr"); | ||
const arr = await zarr.open(store, { kind: "array" }); | ||
const region = await zarr.get(arr, [null, null, 0]); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters