Skip to content

Commit 62091ad

Browse files
Keith-CYgithub-actions[bot]Copilot
authored
Merge released refs/tags/v0.201.0 into develop (#3367)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Keith-CY <7271329+Keith-CY@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Chen Yu <keithwhisper@gmail.com>
2 parents ad8c80f + 2a6040c commit 62091ad

File tree

8 files changed

+76
-9
lines changed

8 files changed

+76
-9
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
# 0.201.0 (2025-05-30)
2+
3+
### Caveat
4+
5+
The [CKB 2023](https://github.com/nervosnetwork/rfcs/blob/master/rfcs/0051-ckb2023/0051-ckb2023.md) Hardfork will be activated at **Epoch 12,293**(estimated 2025-07-01) and requires **CKB@v0.200.0** or **Light Client@v0.4.0** and above.
6+
7+
To ensure synchronization after the hardfork, please upgrade Neuron to [v0.201.0](https://github.com/nervosnetwork/neuron/releases/tag/v0.201.0) or later for full node users, and to [v0.119.0](https://github.com/nervosnetwork/neuron/releases/tag/v0.119.0) or later for light client users.
8+
9+
Visit https://explorer.nervos.org/hardfork for more information about the hardfork.
10+
11+
### CKB Node & Light Client
12+
13+
- [CKB@v0.201.0](https://github.com/nervosnetwork/ckb/releases/tag/v0.201.0) was released on Apr. 3rd, 2025. This version of CKB node is now bundled and preconfigured in Neuron.
14+
- [CKB Light Client@v0.4.1](https://github.com/nervosnetwork/ckb-light-client/releases/tag/v0.4.1) was released on Nov. 13th, 2024. This version of CKB Light Client is now bundled and preconfigured in Neuron
15+
16+
### Assumed valid target
17+
18+
Block before `0x8d98cc0af11e54e7c66b10d188cea7bd1ec33acee624eb0fddd9bb6951cf720e`(at height `16,284,813`) will be skipped in validation.(https://github.com/nervosnetwork/neuron/pull/3357)
19+
20+
---
21+
22+
[![Neuron@v0.201.0](https://github.com/user-attachments/assets/0195090e-b178-4a23-9068-fc0df9d615cd)](https://youtu.be/JFe0Pwr4Io0)
23+
24+
YouTube: https://youtu.be/JFe0Pwr4Io0
25+
26+
---
27+
28+
## New features
29+
30+
- #3323: Support UDT destruction.(@devchenyan)
31+
- #3329, #3347: Introduce new Multisig Script, and support Nervos DAO with it.(@devchenyan)
32+
33+
## Bug fixes
34+
35+
- #3317: Hide 'View Private Key' when it's a hardware wallet.(@devchenyan)
36+
- #3332: Better note for external node running without the indexer module enabled.(@devchenyan)
37+
- #3352: Fix screen flicker when connecting to external nodes running new versions.(@devchenyan)
38+
39+
40+
**Full Changelog**: https://github.com/nervosnetwork/neuron/compare/v0.121.1...v0.201.0
41+
42+
143
# 0.121.1 (2025-02-13)
244

345
### CKB Node & Light Client

compatible.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,30 @@
259259
"0.3",
260260
"0.2"
261261
]
262+
},
263+
"0.201": {
264+
"full": [
265+
"0.201",
266+
"0.200",
267+
"0.121",
268+
"0.120",
269+
"0.119",
270+
"0.118",
271+
"0.117",
272+
"0.116",
273+
"0.115",
274+
"0.114",
275+
"0.113",
276+
"0.112",
277+
"0.111",
278+
"0.110",
279+
"0.109"
280+
],
281+
"light": [
282+
"0.4",
283+
"0.3",
284+
"0.2"
285+
]
262286
}
263287
}
264-
}
288+
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.121.1",
5+
"version": "0.201.0",
66
"npmClient": "yarn",
77
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
88
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "neuron",
33
"productName": "Neuron",
44
"description": "CKB Neuron Wallet",
5-
"version": "0.121.1",
5+
"version": "0.201.0",
66
"private": true,
77
"author": {
88
"name": "Nervos Core Dev",

packages/neuron-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neuron-ui",
3-
"version": "0.121.1",
3+
"version": "0.201.0",
44
"private": true,
55
"author": {
66
"name": "Nervos Core Dev",

packages/neuron-wallet/.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ MAINNET_MULTISIG_TXHASH=0x6888aa39ab30c570c2c30d9d5684d3769bf77265a7973211a3c087
121121
TESTNET_MULTISIG_TXHASH=0x2eefdeb21f3a3edf697c28a52601b4419806ed60bb427420455cc29a090b26d5
122122

123123
# CKB NODE OPTIONS
124-
CKB_NODE_ASSUME_VALID_TARGET='0x53dd03a0420b68e082d660cb2e86f167aa8f1bd95c637228285bf36f5caa9e1d'
125-
CKB_NODE_ASSUME_VALID_TARGET_BLOCK_NUMBER=15361857
126-
CKB_NODE_DATA_SIZE=120
124+
CKB_NODE_ASSUME_VALID_TARGET='0x8d98cc0af11e54e7c66b10d188cea7bd1ec33acee624eb0fddd9bb6951cf720e'
125+
CKB_NODE_ASSUME_VALID_TARGET_BLOCK_NUMBER=16284813
126+
CKB_NODE_DATA_SIZE=125

packages/neuron-wallet/electron-builder.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ mac:
7979
arch:
8080
- arm64
8181
- x64
82+
notarize: false # https://github.com/electron/notarize/issues/163#issuecomment-1726106735
8283

8384
linux:
8485
artifactName: "${productName}-v${version}-${arch}.${ext}"

packages/neuron-wallet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"productName": "Neuron",
44
"description": "CKB Neuron Wallet",
55
"homepage": "https://www.nervos.org/",
6-
"version": "0.121.1",
6+
"version": "0.201.0",
77
"private": true,
88
"author": {
99
"name": "Nervos Core Dev",
@@ -92,7 +92,7 @@
9292
"electron-builder": "24.13.3",
9393
"electron-devtools-installer": "3.2.1",
9494
"jest-when": "3.6.0",
95-
"neuron-ui": "0.121.1",
95+
"neuron-ui": "0.201.0",
9696
"typescript": "5.3.3"
9797
}
9898
}

0 commit comments

Comments
 (0)