@alexbosworth/blockchain 1.7.0 → 2.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 (3) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/LICENSE +1 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,10 +1,14 @@
1
1
  # Versions
2
2
 
3
- ## 1.7.0
3
+ ## 2.0.0
4
4
 
5
5
  - `idForTransactionComponents`: Add method to get transaction id for components
6
6
  - `queryTransactions`: Add method to find transaction outputs matching a query
7
7
 
8
+ ### Breaking Changes
9
+
10
+ - End support for Node.js v16, require v18+
11
+
8
12
  ## 1.6.0
9
13
 
10
14
  - `previousBlockId`: Add method to get the previous block id from a block
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 Alex Bosworth
3
+ Copyright (c) 2023-2024 Alex Bosworth
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "description": "Blockchain data utility methods",
10
10
  "engines": {
11
- "node": ">=16"
11
+ "node": ">=18"
12
12
  },
13
13
  "license": "MIT",
14
14
  "name": "@alexbosworth/blockchain",
@@ -19,5 +19,5 @@
19
19
  "scripts": {
20
20
  "test": "npx nyc@15.1.0 node --experimental-test-coverage --test test/hashes/*.js test/numbers/*.js test/script/*.js test/transactions/*.js"
21
21
  },
22
- "version": "1.7.0"
22
+ "version": "2.0.0"
23
23
  }