Skip to content

Commit

Permalink
Merge pull request #27 from dajiaji/bump-to-1_1_0
Browse files Browse the repository at this point in the history
Bump version to 1.1.0.
  • Loading branch information
dajiaji authored Nov 26, 2023
2 parents d7e1bd2 + 3e80b7a commit 712b0f6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changes

## Version 1.1.0

Released 2023-11-26

- [(#26) Add ECDH key generation benchmark.](https://github.com/dajiaji/crystals-kyber-js/pull/26)
- [(#25) Fix dnt.ts to emit type declaration inline.](https://github.com/dajiaji/crystals-kyber-js/pull/25)
- [(#24) Loosen Deno version on CI for bun and Cloudflare Workers.](https://github.com/dajiaji/crystals-kyber-js/pull/24)
- [(#23) Bump deno.land/std to 0.208.0.](https://github.com/dajiaji/crystals-kyber-js/pull/23)
- [(#23) Bump deno.land/x/dnt to 0.39.0.](https://github.com/dajiaji/crystals-kyber-js/pull/23)
- [(#22) Bump actions/{checkout, setup-node} to v4.](https://github.com/dajiaji/crystals-kyber-js/pull/22)
- [(#21) Add link to doc.](https://github.com/dajiaji/crystals-kyber-js/pull/21)

## Version 1.0.0

Released 2023-09-11
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/crystals_kyber@1.0.0/mod.ts";
import { Kyber768 } from "https://deno.land/x/crystals_kyber@1.1.0/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/crystals-kyber-js@1.0.0";
import { Kyber768 } from "https://esm.sh/crystals-kyber-js@1.1.0";
// ...
</script>

Expand All @@ -138,7 +138,7 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import { Kyber768 } from "https://unpkg.com/crystals-kyber-js@1.0.0";
import { Kyber768 } from "https://unpkg.com/crystals-kyber-js@1.1.0";
// ...
</script>
```
Expand Down Expand Up @@ -186,7 +186,7 @@ try {
### Deno

```js
import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.0.0/mod.ts";
import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.1.0/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/crystals-kyber@1.0.0";
import { Kyber1024 } from "https://esm.sh/crystals-kyber@1.1.0";
globalThis.doKyber = async () => {
try {
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------- | ------------------ |
| 1.0.x | :white_check_mark: |
| < 1.0 | :x: |
| 1.1.x | :white_check_mark: |
| < 1.1 | :x: |

## Reporting a Vulnerability

Expand Down

0 comments on commit 712b0f6

Please sign in to comment.