Skip to content

Commit

Permalink
Merge pull request #291 from dajiaji/bump-to-1_2_5
Browse files Browse the repository at this point in the history
Bump version to 1.2.5.
  • Loading branch information
dajiaji authored Nov 26, 2023
2 parents 37cd468 + 75c5c22 commit 497b079
Show file tree
Hide file tree
Showing 13 changed files with 163 additions and 163 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changes

## Version 1.2.5

Released 2023-11-26

- [(#291) Make dnt emit type declaration inline.](https://github.com/dajiaji/hpke-js/pull/291)
- Update workflows:
- [(#289) Loosen bun versions on CI.](https://github.com/dajiaji/hpke-js/pull/289)
- [(#289) Add Node 21 to CI.](https://github.com/dajiaji/hpke-js/pull/289)
- [(#289) Bump actions/checkout to v4.](https://github.com/dajiaji/hpke-js/pull/289)
- [(#289) Bump actions/setup-node to v4.](https://github.com/dajiaji/hpke-js/pull/289)
- Update devDependencies:
- [(#291) Bump deno.land/std to 0.208.0.](https://github.com/dajiaji/hpke-js/pull/291)
- [(#291) Bump deno.land/x/dnt to 0.39.0.](https://github.com/dajiaji/hpke-js/pull/291)

## Version 1.2.4

Released 2023-11-05
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/[email protected].4/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].4/core/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].4/x/dhkem-x25519/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].5/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].5/core/mod.ts";
// import * as hpke from "https://deno.land/x/[email protected].5/x/dhkem-x25519/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/mod.ts";
Expand All @@ -239,8 +239,8 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/[email protected].4";
// import * as hpke from "https://esm.sh/@hpke/[email protected].4";
import * as hpke from "https://esm.sh/[email protected].5";
// import * as hpke from "https://esm.sh/@hpke/[email protected].5";
// ...
</script>

Expand All @@ -257,8 +257,8 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/[email protected].4/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/[email protected].4/esm/mod.js";
import * as hpke from "https://unpkg.com/[email protected].5/esm/mod.js";
// import * as hpke from "https://unpkg.com/@hpke/[email protected].5/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -338,11 +338,11 @@ try {
Deno:

```js
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/[email protected].4/mod.ts";
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/[email protected].5/mod.ts";
// import {
// Aes128Gcm, CipherSuite, HkdfSha256,
// } from "https://deno.land/x/[email protected].4/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].4/x/dhkem-x25519/mod.ts";
// } from "https://deno.land/x/[email protected].5/core/mod.ts";
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].5/x/dhkem-x25519/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -425,10 +425,10 @@ Browsers:
<head></head>
<body>
<script type="module">
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/[email protected].4";
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/[email protected].5";
// import {
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
// } from "@hpke/[email protected].4";
// } from "@hpke/[email protected].5";
globalThis.doHpke = async () => {
try {
Expand Down
12 changes: 6 additions & 6 deletions core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Using deno.land:

```js
// use a specific version
import * as hpke from "https://deno.land/x/[email protected].4/core/mod.ts";
import * as hpke from "https://deno.land/x/[email protected].5/core/mod.ts";

// use the latest stable version
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
Expand All @@ -60,7 +60,7 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://esm.sh/@hpke/[email protected].4";
import * as hpke from "https://esm.sh/@hpke/[email protected].5";
// ...
</script>

Expand All @@ -76,7 +76,7 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import * as hpke from "https://unpkg.com/@hpke/[email protected].4/esm/mod.js";
import * as hpke from "https://unpkg.com/@hpke/[email protected].5/esm/mod.js";
// ...
</script>
```
Expand Down Expand Up @@ -149,7 +149,7 @@ try {
```js
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://deno.land/x/[email protected].4/core/mod.ts";
} from "https://deno.land/x/[email protected].5/core/mod.ts";

async function doHpke() {
// setup
Expand Down Expand Up @@ -194,10 +194,10 @@ try {
<head></head>
<body>
<script type="module">
// import * as hpke from "https://esm.sh/[email protected].4";
// import * as hpke from "https://esm.sh/[email protected].5";
import {
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
} from "https://esm.sh/@hpke/[email protected].4";
} from "https://esm.sh/@hpke/[email protected].5";
globalThis.doHpke = async () => {
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"imports": {
"testing/": "https://deno.land/std@0.201.0/testing/",
"dnt": "https://deno.land/x/dnt@0.38.1/mod.ts"
"testing/": "https://deno.land/std@0.208.0/testing/",
"dnt": "https://deno.land/x/dnt@0.39.0/mod.ts"
},
"fmt": {
"include": [
Expand Down
Loading

0 comments on commit 497b079

Please sign in to comment.