Skip to content

Commit

Permalink
Merge pull request #32 from dajiaji/bump-to-1_1_1
Browse files Browse the repository at this point in the history
Bump version to 1.1.1.
  • Loading branch information
dajiaji authored Jan 28, 2024
2 parents 84170d6 + 1462bb2 commit 2cb48a3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changes

## Version 1.1.1

Released 2024-01-28

- [(#30) Add noEmit to tsconfig.json.](https://github.com/dajiaji/crystals-kyber-js/pull/30)
- [(#29) Add docstring.](https://github.com/dajiaji/crystals-kyber-js/pull/29)
- [(#28) Add Node 21 to CI.](https://github.com/dajiaji/crystals-kyber-js/pull/28)
- Update Dependencies:
- [(#31) Bump @noble/hashes to 1.3.3.](https://github.com/dajiaji/crystals-kyber-js/pull/31)
- Update devDependencies:
- [(#31) Bump wrangler to 3.19.0.](https://github.com/dajiaji/crystals-kyber-js/pull/31)
- [(#31) Bump deno.land/std to 0.213.0.](https://github.com/dajiaji/crystals-kyber-js/pull/31)

## Version 1.1.0

Released 2023-11-26
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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>

Expand All @@ -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>
```
Expand Down Expand Up @@ -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() {

Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 2cb48a3

Please sign in to comment.