From 59cd38b35bedf87f01b5295ab21679af41ca8daf Mon Sep 17 00:00:00 2001 From: UneBaguette <28904802+UneBaguette@users.noreply.github.com> Date: Sun, 14 Jun 2026 06:52:06 +0200 Subject: [PATCH] fix: export init as value type in index.d.ts - bump version to 0.6.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- scripts/tpl/index.d.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ab4bc9..1c9d839 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ [[package]] name = "blake3-wasm-rs" -version = "0.6.5" +version = "0.6.6" dependencies = [ "blake3", "hex", diff --git a/Cargo.toml b/Cargo.toml index ab4e58b..cf6c4a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3-wasm-rs" -version = "0.6.5" +version = "0.6.6" edition = "2024" license = "MIT OR Apache-2.0" authors = ["Thomas "] diff --git a/scripts/tpl/index.d.ts b/scripts/tpl/index.d.ts index 481d375..e79d8e1 100644 --- a/scripts/tpl/index.d.ts +++ b/scripts/tpl/index.d.ts @@ -3,4 +3,4 @@ // @ts-nocheck export { Hasher, deriveKey, hash, hashXof, keyedHash } from './bundler/blake3_wasm_rs'; -export type { default } from './web/blake3_wasm_rs.d.ts'; \ No newline at end of file +export { default } from './web/blake3_wasm_rs';