bolt01 2.0.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 3.0.0
4
+
5
+ - Node version 20 or higher is required
6
+
3
7
  ## 2.0.0
4
8
 
5
9
  - Node version 16 or higher is required
package/package.json CHANGED
@@ -7,11 +7,11 @@
7
7
  "url": "https://github.com/alexbosworth/bolt01/issues"
8
8
  },
9
9
  "dependencies": {
10
- "bn.js": "5.2.1"
10
+ "bn.js": "5.2.3"
11
11
  },
12
12
  "description": "Lightning Network BOLT-01 methods",
13
13
  "engines": {
14
- "node": ">=16"
14
+ "node": ">=20"
15
15
  },
16
16
  "keywords": [
17
17
  "lightning-network"
@@ -24,7 +24,7 @@
24
24
  "url": "https://github.com/alexbosworth/bolt01.git"
25
25
  },
26
26
  "scripts": {
27
- "test": "npx nyc@15.1.0 node --experimental-test-coverage --test test/arrays/*.js test/big_size/*.js test/tlv_record/*.js test/tlv_stream/*.js"
27
+ "test": "npx nyc@17.1.0 node --experimental-test-coverage --test test/arrays/*.js test/big_size/*.js test/tlv_record/*.js test/tlv_stream/*.js"
28
28
  },
29
- "version": "2.0.0"
29
+ "version": "3.0.0"
30
30
  }