Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaranville committed Aug 4, 2022
1 parent f25ff9c commit b8cf40c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# Changelog
## v0.4.5 2022-08-04
### Fixed
- H5Create should only be called with access modes H5F_ACC_TRUNC (w) and H5F_ACC_EXCL (x)
### Added
- support for SWMR read with refresh on a dataset: e.g.
```js
const file = new hdf5.File("swmr.h5", "Sr");
let ds=file.get("data");
ds.auto_refresh=true;
ds.shape;
// returns 12
ds.shape;
// returns 16 because dataset was updated with SWMR write
ds.value
// has size=16
```
## v0.4.4 2022-05-25
### Fixed
- error in ```isIterable``` when called on non-object (affects ```to_array``` method)
Expand Down Expand Up @@ -133,4 +149,4 @@
- download/upload helpers for web (file_handlers.js)

### Changed
- use ZLIB from emscripten ports
- use ZLIB from emscripten ports
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "h5wasm",
"version": "0.4.4",
"version": "0.4.5",
"description": "A high-level library for reading and writing HDF5 files from Javascript, using a wasm-compiled version of the HDF5 C library",
"types": "./src/hdf5_hl.d.ts",
"type": "module",
Expand Down

0 comments on commit b8cf40c

Please sign in to comment.