Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.120.0 #3283

Merged
merged 10 commits into from
Dec 13, 2024
2 changes: 1 addition & 1 deletion .ckb-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.119.0
v0.120.0
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# 0.120.0 (2024-12-13)

### CKB Node & Light Client

- [[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.
- [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

### Assumed valid target

Block before `0xe1085c7ce8f4e8461ea75afe63ef21d2c1ce6a5d0bf0f0170042bebdd2fbde04`(at height `14,817,366`) will be skipped in validation.(https://github.com/nervosnetwork/neuron/pull/3282)

---

## New features

- #3271: Support Arabic, FrCanadian/Belgian in User Interface.(@Natixe)

## New Contributors

- @Natixe made their first contribution in https://github.com/nervosnetwork/neuron/pull/3271

**Full Changelog**: https://github.com/nervosnetwork/neuron/compare/v0.119.0...v0.120.0


# 0.119.0 (2024-12-02)

### CKB Node & Light Client
Expand Down
27 changes: 27 additions & 0 deletions compatible.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"fullVersions": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand All @@ -26,6 +27,7 @@
"compatible": {
"0.111": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand All @@ -46,6 +48,7 @@
},
"0.110": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand Down Expand Up @@ -82,6 +85,7 @@
},
"0.112": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand All @@ -102,6 +106,7 @@
},
"0.114": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand All @@ -122,6 +127,7 @@
},
"0.116": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand All @@ -142,6 +148,7 @@
},
"0.117": {
"full": [
"0.120",
"0.119",
"0.118",
"0.117",
Expand Down Expand Up @@ -179,6 +186,26 @@
"0.3",
"0.2"
]
},
"0.120": {
"full": [
"0.119",
"0.118",
"0.117",
"0.116",
"0.115",
"0.114",
"0.113",
"0.112",
"0.111",
"0.110",
"0.109"
],
"light": [
"0.4",
"0.3",
"0.2"
]
}
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.119.0",
"version": "0.120.0",
"npmClient": "yarn",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "neuron",
"productName": "Neuron",
"description": "CKB Neuron Wallet",
"version": "0.119.0",
"version": "0.120.0",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/.storybook/electron.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const sendSyncValues = {
'get-locale': ('zh', 'fr', 'es'),
'get-locale': ('zh', 'fr', 'es', 'ar'),
'get-version': '0.103.1',
}

Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neuron-ui",
"version": "0.119.0",
"version": "0.120.0",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface SpecialAssetCell {
lock: {
args: string
codeHash: string
hashType: 'type' | 'data'
hashType: 'type' | 'data' | 'data1' | 'data2'
}
lockHash: string
multiSignBlake160: string
Expand Down
Loading
Loading