Skip to content

Commit

Permalink
changelog update for version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaranville committed Dec 5, 2023
1 parent 4267c16 commit a02524b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## v0.7.0 2023-12-05
### Changed
- `package.json` modified so that exports are defined in a way that works better with bundlers
- (should now work with e.g. NextJS)
- **Breaking change** the `nodejs` import is now 'h5wasm/node' rather than 'h5wasm'. The `nodejs` examples in the README have been updated, as well as the tests.
- tests modified to use smaller compressed array (reduce package size)
## v0.6.10 2023-11-09
### Added
- export more symbols to support `blosc2 ` filter
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ node --experimental-wasm-bigint
```

```js
const h5wasm = await import("h5wasm");
const h5wasm = await import("h5wasm/node");
await h5wasm.ready;

let f = new h5wasm.File("/home/brian/Downloads/sans59510.nxs.ngv", "r");
Expand Down

0 comments on commit a02524b

Please sign in to comment.