Skip to content

Commit

Permalink
Merge pull request #37 from dajiaji/bump-to-1_1_2
Browse files Browse the repository at this point in the history
Bump version to 1.1.2.
  • Loading branch information
dajiaji authored Sep 14, 2024
2 parents e6a1a82 + ecf90f3 commit 05754fc
Show file tree
Hide file tree
Showing 4 changed files with 20 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.2

Released 2024-09-14

- [(#36) Fix lint error on playwright config.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
- [(#36) Fix dnt execution error caused by node_modules.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
- [(#36) Fix test for cloudflare workers.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
- [(#36) Add deno tasks: npm, npm-link, npm-pack and test:cloudflare.](https://github.com/dajiaji/crystals-kyber-js/pull/36)
- [(#35) Fix KyberSlash vulnerability.](https://github.com/dajiaji/crystals-kyber-js/pull/35)
- Update devDependencies:
- [(#36) Bump dnt to 0.41.3.](https://github.com/dajiaji/crystals-kyber-js/pull/36)

## Version 1.1.1

Released 2024-01-28
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ but includes the following improvements:<br>
- ✅ Better performance: 1.4 to 1.8 times faster than the original
implementation.<br>
- ✅ Tree-shaking friendly.<br>
- ✅ Fix [KyberSlash](https://kyberslash.cr.yp.to/index.html) vulnerability.<br>

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

Expand Down Expand Up @@ -106,7 +107,7 @@ Using deno.land:

```js
// use a specific version
import { Kyber768 } from "https://deno.land/x/[email protected].1/mod.ts";
import { Kyber768 } from "https://deno.land/x/[email protected].2/mod.ts";

// use the latest stable version
import { Kyber768 } from "https://deno.land/x/crystals_kyber/mod.ts";
Expand All @@ -122,7 +123,7 @@ Using esm.sh:
```html
<!-- use a specific version -->
<script type="module">
import { Kyber768 } from "https://esm.sh/[email protected].1";
import { Kyber768 } from "https://esm.sh/[email protected].2";
// ...
</script>

Expand All @@ -138,7 +139,7 @@ Using unpkg:
```html
<!-- use a specific version -->
<script type="module">
import { Kyber768 } from "https://unpkg.com/[email protected].1";
import { Kyber768 } from "https://unpkg.com/[email protected].2";
// ...
</script>
```
Expand Down Expand Up @@ -186,7 +187,7 @@ try {
### Deno

```js
import { Kyber512 } from "https://deno.land/x/[email protected].1/mod.ts";
import { Kyber512 } from "https://deno.land/x/[email protected].2/mod.ts";

async function doKyber() {

Expand Down Expand Up @@ -216,7 +217,7 @@ try {
<head></head>
<body>
<script type="module">
import { Kyber1024 } from "https://esm.sh/[email protected].1";
import { Kyber1024 } from "https://esm.sh/[email protected].2";
globalThis.doKyber = async () => {
try {
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
| Version | Supported |
| ------- | ------------------ |
| 1.1.x | :white_check_mark: |
| < 1.1 | :x: |
| < 1.1.2 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dajiaji/crystals-kyber-js",
"version": "1.1.1",
"version": "1.1.2",
"exports": "./mod.ts",
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
Expand Down

0 comments on commit 05754fc

Please sign in to comment.