Skip to content

Commit

Permalink
Bump up version to v0.11.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajiaji committed Jun 18, 2022
1 parent b75ac69 commit 919b039
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## Version 0.11.5

Released 2022-06-18

- [(#76) Add DHKEM(P-256, HKDF-SHA256) to Deno supported KEMs.](https://github.com/dajiaji/hpke-js/pull/78)

## Version 0.11.4

Released 2022-06-11
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/hpke-js@0.11.4";
import * as hpke from "https://esm.sh/hpke-js@0.11.5";
// ...
</script>

Expand All @@ -123,7 +123,7 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/hpke-js@0.11.4/esm/mod.js";
import * as hpke from "https://unpkg.com/hpke-js@0.11.5/esm/mod.js";
// ...
</script>
```
Expand All @@ -148,7 +148,7 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/hpke@v0.11.4/mod.ts";
import * as hpke from "https://deno.land/x/hpke@v0.11.5/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/mod.ts";
Expand All @@ -167,8 +167,8 @@ Browsers:
<head></head>
<body>
<script type="module">
// import * as hpke from "https://esm.sh/hpke-js@0.11.4";
import { Kem, Kdf, Aead, CipherSuite } from "https://esm.sh/hpke-js@0.11.4";
// import * as hpke from "https://esm.sh/hpke-js@0.11.5";
import { Kem, Kdf, Aead, CipherSuite } from "https://esm.sh/hpke-js@0.11.5";
globalThis.doHpke = async () => {
Expand Down Expand Up @@ -253,7 +253,7 @@ doHpke();
Deno:

```js
import { Kem, Kdf, Aead, CipherSuite } from "https://deno.land/x/hpke@v0.11.4/mod.ts";
import { Kem, Kdf, Aead, CipherSuite } from "https://deno.land/x/hpke@v0.11.5/mod.ts";

async function doHpke() {
// setup
Expand Down
2 changes: 1 addition & 1 deletion samples/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"hpke-js": "^0.11.4"
"hpke-js": "^0.11.5"
}
}
2 changes: 1 addition & 1 deletion samples/ts-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
"license": "MIT",
"dependencies": {
"hpke-js": "^0.11.4",
"hpke-js": "^0.11.5",
"ts-node": "^10.7.0"
}
}

0 comments on commit 919b039

Please sign in to comment.