Skip to content

Commit 5d2ecf9

Browse files
authored
Merge pull request nervosnetwork#3283 from nervosnetwork/rc/v0.120.0
2 parents 39fea37 + 832b8fd commit 5d2ecf9

File tree

33 files changed

+1802
-81
lines changed

33 files changed

+1802
-81
lines changed

.ckb-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.119.0
1+
v0.120.0

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 0.120.0 (2024-12-13)
2+
3+
### CKB Node & Light Client
4+
5+
- [[email protected]](https://github.com/nervosnetwork/ckb/releases/tag/v0.120.0) was released on Dec. 12th, 2024. This version of CKB node is now bundled and preconfigured in Neuron.
6+
- [CKB Light [email protected]](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
7+
8+
### Assumed valid target
9+
10+
Block before `0xe1085c7ce8f4e8461ea75afe63ef21d2c1ce6a5d0bf0f0170042bebdd2fbde04`(at height `14,817,366`) will be skipped in validation.(https://github.com/nervosnetwork/neuron/pull/3282)
11+
12+
---
13+
14+
## New features
15+
16+
- #3271: Support Arabic, FrCanadian/Belgian in User Interface.(@Natixe)
17+
18+
## New Contributors
19+
20+
- @Natixe made their first contribution in https://github.com/nervosnetwork/neuron/pull/3271
21+
22+
**Full Changelog**: https://github.com/nervosnetwork/neuron/compare/v0.119.0...v0.120.0
23+
24+
125
# 0.119.0 (2024-12-02)
226

327
### CKB Node & Light Client

compatible.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"fullVersions": [
3+
"0.120",
34
"0.119",
45
"0.118",
56
"0.117",
@@ -26,6 +27,7 @@
2627
"compatible": {
2728
"0.111": {
2829
"full": [
30+
"0.120",
2931
"0.119",
3032
"0.118",
3133
"0.117",
@@ -46,6 +48,7 @@
4648
},
4749
"0.110": {
4850
"full": [
51+
"0.120",
4952
"0.119",
5053
"0.118",
5154
"0.117",
@@ -82,6 +85,7 @@
8285
},
8386
"0.112": {
8487
"full": [
88+
"0.120",
8589
"0.119",
8690
"0.118",
8791
"0.117",
@@ -102,6 +106,7 @@
102106
},
103107
"0.114": {
104108
"full": [
109+
"0.120",
105110
"0.119",
106111
"0.118",
107112
"0.117",
@@ -122,6 +127,7 @@
122127
},
123128
"0.116": {
124129
"full": [
130+
"0.120",
125131
"0.119",
126132
"0.118",
127133
"0.117",
@@ -142,6 +148,7 @@
142148
},
143149
"0.117": {
144150
"full": [
151+
"0.120",
145152
"0.119",
146153
"0.118",
147154
"0.117",
@@ -179,6 +186,26 @@
179186
"0.3",
180187
"0.2"
181188
]
189+
},
190+
"0.120": {
191+
"full": [
192+
"0.119",
193+
"0.118",
194+
"0.117",
195+
"0.116",
196+
"0.115",
197+
"0.114",
198+
"0.113",
199+
"0.112",
200+
"0.111",
201+
"0.110",
202+
"0.109"
203+
],
204+
"light": [
205+
"0.4",
206+
"0.3",
207+
"0.2"
208+
]
182209
}
183210
}
184211
}

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.119.0",
5+
"version": "0.120.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.119.0",
5+
"version": "0.120.0",
66
"private": true,
77
"author": {
88
"name": "Nervos Core Dev",

packages/neuron-ui/.storybook/electron.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const sendSyncValues = {
2-
'get-locale': ('zh', 'fr', 'es'),
2+
'get-locale': ('zh', 'fr', 'es', 'ar'),
33
'get-version': '0.103.1',
44
}
55

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.119.0",
3+
"version": "0.120.0",
44
"private": true,
55
"author": {
66
"name": "Nervos Core Dev",

packages/neuron-ui/src/components/SpecialAssetList/hooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export interface SpecialAssetCell {
3030
lock: {
3131
args: string
3232
codeHash: string
33-
hashType: 'type' | 'data'
33+
hashType: 'type' | 'data' | 'data1' | 'data2'
3434
}
3535
lockHash: string
3636
multiSignBlake160: string

0 commit comments

Comments
 (0)