Skip to content

Commit 05754fc

Browse files
authored
Merge pull request #37 from dajiaji/bump-to-1_1_2
Bump version to 1.1.2.
2 parents e6a1a82 + ecf90f3 commit 05754fc

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changes
22

3+
## Version 1.1.2
4+
5+
Released 2024-09-14
6+
7+
- [(#36) Fix lint error on playwright config.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
8+
- [(#36) Fix dnt execution error caused by node_modules.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
9+
- [(#36) Fix test for cloudflare workers.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
10+
- [(#36) Add deno tasks: npm, npm-link, npm-pack and test:cloudflare.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
11+
- [(#35) Fix KyberSlash vulnerability.](https://github.com/dajiaji/crystals-kyber-js/pull/35)
12+
- Update devDependencies:
13+
- [(#36) Bump dnt to 0.41.3.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
14+
315
## Version 1.1.1
416

517
Released 2024-01-28

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ but includes the following improvements:<br>
3535
- ✅ Better performance: 1.4 to 1.8 times faster than the original
3636
implementation.<br>
3737
- ✅ Tree-shaking friendly.<br>
38+
- ✅ Fix [KyberSlash](https://kyberslash.cr.yp.to/index.html) vulnerability.<br>
3839

3940
For Node.js, you can install `crystals-kyber-js` via npm/yarn:
4041

@@ -106,7 +107,7 @@ Using deno.land:
106107

107108
```js
108109
// use a specific version
109-
import { Kyber768 } from "https://deno.land/x/crystals_kyber@1.1.1/mod.ts";
110+
import { Kyber768 } from "https://deno.land/x/crystals_kyber@1.1.2/mod.ts";
110111

111112
// use the latest stable version
112113
import { Kyber768 } from "https://deno.land/x/crystals_kyber/mod.ts";
@@ -122,7 +123,7 @@ Using esm.sh:
122123
```html
123124
<!-- use a specific version -->
124125
<script type="module">
125-
import { Kyber768 } from "https://esm.sh/crystals-kyber-js@1.1.1";
126+
import { Kyber768 } from "https://esm.sh/crystals-kyber-js@1.1.2";
126127
// ...
127128
</script>
128129

@@ -138,7 +139,7 @@ Using unpkg:
138139
```html
139140
<!-- use a specific version -->
140141
<script type="module">
141-
import { Kyber768 } from "https://unpkg.com/crystals-kyber-js@1.1.1";
142+
import { Kyber768 } from "https://unpkg.com/crystals-kyber-js@1.1.2";
142143
// ...
143144
</script>
144145
```
@@ -186,7 +187,7 @@ try {
186187
### Deno
187188

188189
```js
189-
import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.1.1/mod.ts";
190+
import { Kyber512 } from "https://deno.land/x/crystals_kyber@1.1.2/mod.ts";
190191

191192
async function doKyber() {
192193

@@ -216,7 +217,7 @@ try {
216217
<head></head>
217218
<body>
218219
<script type="module">
219-
import { Kyber1024 } from "https://esm.sh/crystals-kyber@1.1.1";
220+
import { Kyber1024 } from "https://esm.sh/crystals-kyber@1.1.2";
220221
221222
globalThis.doKyber = async () => {
222223
try {

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
| Version | Supported |
66
| ------- | ------------------ |
77
| 1.1.x | :white_check_mark: |
8-
| < 1.1 | :x: |
8+
| < 1.1.2 | :x: |
99

1010
## Reporting a Vulnerability
1111

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dajiaji/crystals-kyber-js",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"exports": "./mod.ts",
55
"imports": {
66
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",

0 commit comments

Comments
 (0)