-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from dajiaji/bump-to-1_1_1
Bump version to 1.1.1.
- Loading branch information
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,7 +106,7 @@ Using deno.land: | |
|
||
```js | ||
// use a specific version | ||
import { Kyber768 } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { Kyber768 } from "https://deno.land/x/[email protected].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 | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import { Kyber768 } from "https://esm.sh/[email protected].0"; | ||
import { Kyber768 } from "https://esm.sh/[email protected].1"; | ||
// ... | ||
</script> | ||
|
||
|
@@ -138,7 +138,7 @@ Using unpkg: | |
```html | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import { Kyber768 } from "https://unpkg.com/[email protected].0"; | ||
import { Kyber768 } from "https://unpkg.com/[email protected].1"; | ||
// ... | ||
</script> | ||
``` | ||
|
@@ -186,7 +186,7 @@ try { | |
### Deno | ||
|
||
```js | ||
import { Kyber512 } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { Kyber512 } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
|
||
async function doKyber() { | ||
|
||
|
@@ -216,7 +216,7 @@ try { | |
<head></head> | ||
<body> | ||
<script type="module"> | ||
import { Kyber1024 } from "https://esm.sh/[email protected].0"; | ||
import { Kyber1024 } from "https://esm.sh/[email protected].1"; | ||
globalThis.doKyber = async () => { | ||
try { | ||
|