From bc0ddf3b67eee1fb59d1cf68e1dd869c3a53cce6 Mon Sep 17 00:00:00 2001 From: Ajitomi Daisuke Date: Sun, 13 Aug 2023 18:53:49 +0900 Subject: [PATCH] Bump version up to 1.1.1. --- CHANGES.md | 7 +++++++ README.md | 26 +++++++++++++------------- core/README.md | 16 ++++++++-------- samples/node/package.json | 2 +- samples/ts-node/package.json | 2 +- x/chacha20poly1305/README.md | 22 +++++++++++----------- x/dhkem-secp256k1/README.md | 20 ++++++++++---------- x/dhkem-x25519/README.md | 20 ++++++++++---------- x/dhkem-x448/README.md | 20 ++++++++++---------- 9 files changed, 71 insertions(+), 64 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 243c3ac27..216a5553c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## Version 1.1.1 + +Released 2023-08-15 + +- [(#259) Remove imports with asterisk.](https://github.com/dajiaji/hpke-js/pull/259) +- [(#258) Add sideEffects:false to dnt.ts.](https://github.com/dajiaji/hpke-js/pull/258) + ## Version 1.1.0 Released 2023-08-15 diff --git a/README.md b/README.md index e66edf64c..637504cf4 100644 --- a/README.md +++ b/README.md @@ -183,8 +183,8 @@ Using esm.sh: ```html @@ -201,8 +201,8 @@ Using unpkg: ```html ``` @@ -239,9 +239,9 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.1.0/x/dhkem-x25519/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.1.0/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.1.1/x/dhkem-x25519/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.1.1/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -285,8 +285,8 @@ Browsers: @@ -49,8 +49,8 @@ Using unpkg: ```html ``` @@ -75,7 +75,7 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -102,8 +102,8 @@ This section shows some typical usage examples. @@ -49,8 +49,8 @@ Using unpkg: ```html ``` @@ -75,8 +75,8 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; -import * as chacha20 from "https://deno.land/x/hpke@1.1.0/x/chacha20poly1305/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; +import * as chacha20 from "https://deno.land/x/hpke@1.1.1/x/chacha20poly1305/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -104,9 +104,9 @@ This section shows some typical usage examples. @@ -52,8 +52,8 @@ Using unpkg: ```html ``` @@ -78,8 +78,8 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; -import * as secp256k1 from "https://deno.land/x/hpke@1.1.0/x/dhkem-secp256k1/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; +import * as secp256k1 from "https://deno.land/x/hpke@1.1.1/x/dhkem-secp256k1/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -107,8 +107,8 @@ This section shows some typical usage examples. @@ -49,8 +49,8 @@ Using unpkg: ```html ``` @@ -75,8 +75,8 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; -import * as x25519 from "https://deno.land/x/hpke@1.1.0/x/dhkem-x25519/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; +import * as x25519 from "https://deno.land/x/hpke@1.1.1/x/dhkem-x25519/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -104,8 +104,8 @@ This section shows some typical usage examples. @@ -49,8 +49,8 @@ Using unpkg: ```html ``` @@ -75,8 +75,8 @@ Using deno.land: ```js // use a specific version -import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; -import * as x448 from "https://deno.land/x/hpke@1.1.0/x/dhkem-x448/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; +import * as x448 from "https://deno.land/x/hpke@1.1.1/x/dhkem-x448/mod.ts"; // use the latest stable version import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; @@ -104,8 +104,8 @@ This section shows some typical usage examples.