Skip to content

Commit 9a7be01

Browse files
authored
dhkem-secp256k1: bump version to 1.6.4. (#618)
1 parent 20bc4da commit 9a7be01

File tree

3 files changed

+15
-79
lines changed

3 files changed

+15
-79
lines changed

.github/workflows/ci_node.yml

Lines changed: 4 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -29,84 +29,10 @@ jobs:
2929
- name: Run dnt & minify
3030
run: |
3131
npm install -g esbuild
32-
- name: Run dnt & minify for /common
33-
working-directory: ./packages/common
34-
run: |
35-
deno task dnt
36-
deno task minify > ../../npm/packages/common/hpke-common.min.js
37-
- name: Publish to npm (dry) for /packages/common
38-
working-directory: ./npm/packages/common
39-
if: matrix.node-version != 24
40-
run: npm publish --dry-run
41-
- name: Run dnt & minify for /core
42-
working-directory: ./packages/core
43-
run: |
44-
deno task dnt
45-
deno task minify > ../../npm/packages/core/hpke-core.min.js
46-
- name: Publish to npm (dry) for /packages/core
47-
working-directory: ./npm/packages/core
48-
if: matrix.node-version != 24
49-
run: npm publish --dry-run
50-
- name: Run dnt & minify for /packages/chacha20poly1305
51-
working-directory: ./packages/chacha20poly1305
52-
run: |
53-
deno task dnt
54-
deno task minify > ../../npm/packages/chacha20poly1305/hpke-chacha20poly1305.min.js
55-
- name: Publish to npm (dry) for /packages/chacha20poly1305
56-
working-directory: ./npm/packages/chacha20poly1305
57-
if: matrix.node-version != 24
58-
run: npm publish --dry-run
59-
- name: Run dnt & minify for /packages/dhkem-x25519
60-
working-directory: ./packages/dhkem-x25519
61-
run: |
62-
deno task dnt
63-
deno task minify > ../../npm/packages/dhkem-x25519/hpke-dhkem-x25519.min.js
64-
- name: Publish to npm (dry) for /packages/dhkem-x25519
65-
working-directory: ./npm/packages/dhkem-x25519
66-
if: matrix.node-version != 24
67-
run: npm publish --dry-run
68-
- name: Run dnt & minify for /packages/dhkem-x448
69-
working-directory: ./packages/dhkem-x448
70-
run: |
71-
deno task dnt
72-
deno task minify > ../../npm/packages/dhkem-x448/hpke-dhkem-x448.min.js
73-
- name: Publish to npm (dry) for /packages/dhkem-x448
74-
working-directory: ./npm/packages/dhkem-x448
75-
if: matrix.node-version != 24
76-
run: npm publish --dry-run
77-
- name: Run dnt & minify for /packages/dhkem-secp256k1
78-
working-directory: ./packages/dhkem-secp256k1
79-
run: |
80-
deno task dnt
81-
deno task minify > ../../npm/packages/dhkem-secp256k1/hpke-dhkem-secp256k1.min.js
82-
- name: Publish to npm (dry) for /packages/dhkem-secp256k1
83-
working-directory: ./npm/packages/dhkem-secp256k1
84-
if: matrix.node-version != 24
85-
run: npm publish --dry-run
86-
- name: Run dnt & minify for /packages/hybridkem-x-wing
87-
working-directory: ./packages/hybridkem-x-wing
88-
run: |
89-
deno task dnt
90-
deno task minify > ../../npm/packages/hybridkem-x-wing/hpke-hybridkem-x-wing.min.js
91-
- name: Publish to npm (dry) for /packages/hybridkem-x-wing
92-
working-directory: ./npm/packages/hybridkem-x-wing
93-
if: matrix.node-version != 24
94-
run: npm publish --dry-run
95-
- name: Run dnt & minify for /packages/hpke-js
96-
working-directory: ./packages/hpke-js
97-
run: |
98-
deno task dnt
99-
deno task minify > ../../npm/packages/hpke-js/hpke.min.js
100-
- name: Publish to npm (dry) for /packages/hpke-js
101-
working-directory: ./npm/packages/hpke-js
102-
if: matrix.node-version != 24
103-
run: npm publish --dry-run
104-
- name: Run dnt & minify for /packages/ml-kem
105-
working-directory: ./packages/ml-kem
32+
- name: Run dnt & minify
10633
run: |
10734
deno task dnt
108-
deno task minify > ../../npm/packages/ml-kem/hpke-ml-kem.min.js
109-
- name: Publish to npm (dry) for /packages/ml-kem
110-
working-directory: ./npm/packages/ml-kem
35+
deno task minify
36+
- name: Publish to npm (dry)
11137
if: matrix.node-version != 24
112-
run: npm publish --dry-run
38+
run: deno task dry-publish

packages/dhkem-secp256k1/CHANGES.md

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

3+
## Version 1.6.4
4+
5+
Released 2025-08-13
6+
7+
- [(#616) base: add deno task minify.](https://github.com/dajiaji/hpke-js/pull/616)
8+
- [(#614) base: add deno task npm-build.](https://github.com/dajiaji/hpke-js/pull/614)
9+
- [(#613) base: add deno task check.](https://github.com/dajiaji/hpke-js/pull/613)
10+
- [(#612) base: bump common to 1.8.0.](https://github.com/dajiaji/hpke-js/pull/612)
11+
- [(#610) base: remove path to noble from tsconfig.json.](https://github.com/dajiaji/hpke-js/pull/610)
12+
313
## Version 1.6.3
414

515
Released 2025-08-12

packages/dhkem-secp256k1/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpke/dhkem-secp256k1",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"exports": "./mod.ts",
55
"imports": {
66
"@noble/curves": "npm:@noble/curves@^1.9.6"

0 commit comments

Comments
 (0)