diff --git a/CHANGES.md b/CHANGES.md index db6298f..2bf0f52 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,18 @@ # Changes +## Version 1.1.1 + +Released 2024-01-28 + +- [(#30) Add noEmit to tsconfig.json.](https://github.com/dajiaji/crystals-kyber-js/pull/30) +- [(#29) Add docstring.](https://github.com/dajiaji/crystals-kyber-js/pull/29) +- [(#28) Add Node 21 to CI.](https://github.com/dajiaji/crystals-kyber-js/pull/28) +- Update Dependencies: + - [(#31) Bump @noble/hashes to 1.3.3.](https://github.com/dajiaji/crystals-kyber-js/pull/31) +- Update devDependencies: + - [(#31) Bump wrangler to 3.19.0.](https://github.com/dajiaji/crystals-kyber-js/pull/31) + - [(#31) Bump deno.land/std to 0.213.0.](https://github.com/dajiaji/crystals-kyber-js/pull/31) + ## Version 1.1.0 Released 2023-11-26 diff --git a/README.md b/README.md index f82a397..791f3cf 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Using deno.land: ```js // use a specific version -import { Kyber768 } from "https://deno.land/x/crystals_kyber@1.1.0/mod.ts"; +import { Kyber768 } from "https://deno.land/x/crystals_kyber@1.1.1/mod.ts"; // use the latest stable version import { Kyber768 } from "https://deno.land/x/crystals_kyber/mod.ts"; @@ -122,7 +122,7 @@ Using esm.sh: ```html @@ -138,7 +138,7 @@ Using unpkg: ```html ``` @@ -186,7 +186,7 @@ try { ### Deno ```js -import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.1.0/mod.ts"; +import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.1.1/mod.ts"; async function doKyber() { @@ -216,7 +216,7 @@ try {