From e320e2dea8867129b39adb0f4a6fa6e22f5a8992 Mon Sep 17 00:00:00 2001 From: Ajitomi Daisuke Date: Sat, 5 Aug 2023 08:11:09 +0900 Subject: [PATCH] Bump version up to 1.0.2. --- CHANGES.md | 8 ++++++++ README.md | 26 +++++++++++++------------- core/README.md | 16 ++++++++-------- samples/node/package.json | 2 +- samples/ts-node/package.json | 2 +- src/cipherSuiteNative.ts | 2 +- x/chacha20poly1305/README.md | 22 +++++++++++----------- x/dhkem-secp256k1/README.md | 20 ++++++++++---------- x/dhkem-x25519/README.md | 20 ++++++++++---------- x/dhkem-x448/README.md | 20 ++++++++++---------- 10 files changed, 73 insertions(+), 65 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 5d9058fc0..3a715d2b1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # Changes +## Version 1.0.2 + +Released 2023-08-06 + +- [(#230) Simplify and expose HpkeError.](https://github.com/dajiaji/hpke-js/pull/230) +- [(#229) Rename \*ContextInterface to \*Context.](https://github.com/dajiaji/hpke-js/pull/229) +- [(#227) Refine tsdoc description.](https://github.com/dajiaji/hpke-js/pull/227) + ## Version 1.0.1 Released 2023-08-06 diff --git a/README.md b/README.md index e5462e23b..7ad6d23bb 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.0.1/core/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.0.1/x/dhkem-x25519/mod.ts"; -// import * as hpke from "https://deno.land/x/hpke@1.0.1/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/core/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.0.2/x/dhkem-x25519/mod.ts"; +// import * as hpke from "https://deno.land/x/hpke@1.0.2/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.0.1/core/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/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.0.1/core/mod.ts"; -import * as chacha20 from "https://deno.land/x/hpke@1.0.1/x/chacha20poly1305/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/core/mod.ts"; +import * as chacha20 from "https://deno.land/x/hpke@1.0.2/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.0.1/core/mod.ts"; -import * as secp256k1 from "https://deno.land/x/hpke@1.0.1/x/dhkem-secp256k1/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/core/mod.ts"; +import * as secp256k1 from "https://deno.land/x/hpke@1.0.2/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.0.1/core/mod.ts"; -import * as x25519 from "https://deno.land/x/hpke@1.0.1/x/dhkem-x25519/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/core/mod.ts"; +import * as x25519 from "https://deno.land/x/hpke@1.0.2/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.0.1/core/mod.ts"; -import * as x448 from "https://deno.land/x/hpke@1.0.1/x/dhkem-x448/mod.ts"; +import * as hpke from "https://deno.land/x/hpke@1.0.2/core/mod.ts"; +import * as x448 from "https://deno.land/x/hpke@1.0.2/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.