From 08e01269bc388d326ecbd062131318b19a2799f1 Mon Sep 17 00:00:00 2001 From: UneBaguette <28904802+UneBaguette@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:19:59 +0200 Subject: [PATCH] chore: bump version to 0.5.0 BREAKING: hashXof/finalizeXof now throw on invalid out_len --- Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d889b3..e1deba1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -53,7 +53,7 @@ dependencies = [ [[package]] name = "blake3-wasm-rs" -version = "0.1.4" +version = "0.5.0" dependencies = [ "blake3", "hex", diff --git a/Cargo.toml b/Cargo.toml index f1b603f..69536c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3-wasm-rs" -version = "0.1.4" +version = "0.5.0" edition = "2024" license = "MIT" authors = ["UneBaguette "] diff --git a/Makefile b/Makefile index 983b235..37c29f8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ROOT := pkg CRATE := blake3_wasm_rs -VERSION := 0.4.1 +VERSION := $(shell grep '^version' Cargo.toml | head -1 | sed 's/.*"\(.*\)"/\1/') CARGO := cargo WASM_BINDGEN := wasm-bindgen