Skip to content

Commit

Permalink
0.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Feb 4, 2025
1 parent c47cf94 commit 5cb1264
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.0.25 (4. Feb, 2025)
## 0.0.26 (4. Feb, 2025)

- use zstd v1.5.6

Expand Down
6 changes: 3 additions & 3 deletions lib/zstd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,13 +271,13 @@ Module['_ZSTD_decompress_usingDict'] = function () {
return (Module['_ZSTD_decompress_usingDict'] = Module['asm']['n']).apply(null, arguments);
};
Module['_ZSTD_decompress'] = function () {
return (_ZSTD_decompress = Module['_ZSTD_decompress'] = Module['asm']['o']).apply(null, arguments);
return (Module['_ZSTD_decompress'] = Module['asm']['o']).apply(null, arguments);
};
Module['_malloc'] = function () {
return (_malloc = Module['_malloc'] = Module['asm']['p']).apply(null, arguments);
return (Module['_malloc'] = Module['asm']['p']).apply(null, arguments);
};
Module['_free'] = function () {
return (_free = Module['_free'] = Module['asm']['q']).apply(null, arguments);
return (Module['_free'] = Module['asm']['q']).apply(null, arguments);
};

var calledRun;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bokuweb/zstd-wasm",
"version": "0.0.25",
"version": "0.0.26",
"repository": "ssh://[email protected]/bokuweb/zstd-wasm.git",
"author": "<[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 5cb1264

Please sign in to comment.