Skip to content

Commit 09d0f99

Browse files
authored
Merge pull request #2121 from nervosnetwork/rc/0.100.1
Hotfix 0.100.1
2 parents adf4fba + 757bc0f commit 09d0f99

File tree

17 files changed

+176
-201
lines changed

17 files changed

+176
-201
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
# 0.100.0 (2021-09-24)
1+
# 0.100.1 (2021-09-29)
2+
3+
[CKB v0.100.0](https://github.com/nervosnetwork/ckb/releases/tag/v0.100.0) was released on Sep. 22nd, 2021. This version of CKB node is now bundled and preconfigured in Neuron.
4+
5+
**Please note that in order to adapt to the latest version of CKB, Neuron will resynchronize the data on the chain, and the whole synchronization may take a long time.**
6+
7+
### Hotfix
8+
* Rename ckb-indexer data folder from `ckb-indexer` to `ckb_indexer_data`.
9+
* [GHSA-33f9-j839-rf8h](https://github.com/advisories/GHSA-33f9-j839-rf8h): Upgrade immer to 9.0.6.
10+
11+
12+
# 0.100.0 (2021-09-25)
213

314
[CKB v0.100.0](https://github.com/nervosnetwork/ckb/releases/tag/v0.100.0) was released on Sep. 22nd, 2021. This version of CKB node is now bundled and preconfigured in Neuron.
415

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.100.0",
5+
"version": "0.100.1",
66
"npmClient": "yarn",
77
"useWorkspaces": true
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.100.0",
5+
"version": "0.100.1",
66
"private": true,
77
"author": {
88
"name": "Nervos Core Dev",

packages/neuron-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neuron-ui",
3-
"version": "0.100.0",
3+
"version": "0.100.1",
44
"private": true,
55
"author": {
66
"name": "Nervos Core Dev",
@@ -50,7 +50,7 @@
5050
"canvg": "2.0.0",
5151
"grommet-icons": "4.4.0",
5252
"i18next": "17.0.13",
53-
"immer": "8.0.1",
53+
"immer": "9.0.6",
5454
"jsqr": "1.2.0",
5555
"office-ui-fabric-react": "7.31.1",
5656
"qr.js": "0.0.0",

packages/neuron-ui/src/states/init/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const initNotifications: Array<State.Message> = [
1010
},
1111
]
1212

13-
export const appState: Readonly<State.App> = {
13+
export const appState: State.App = {
1414
tipBlockNumber: '',
1515
tipBlockHash: '',
1616
tipBlockTimestamp: 0,

packages/neuron-ui/src/states/init/chain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { currentNetworkID } from 'services/localCache'
22
import { ConnectionStatus } from 'utils'
33

4-
export const transactionState: Readonly<State.DetailedTransaction> = {
4+
export const transactionState: State.DetailedTransaction = {
55
value: '',
66
hash: '',
77
type: 'receive',

packages/neuron-ui/src/states/init/nervosDAO.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const emptyNervosDaoData: Readonly<State.NervosDAO> = {
1+
export const emptyNervosDaoData: State.NervosDAO = {
22
records: [],
33
}
44

packages/neuron-ui/src/states/init/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { wallets, networks } from 'services/localCache'
22

3-
export const settingsState: Readonly<State.Settings> = {
3+
export const settingsState: State.Settings = {
44
general: {},
55
networks: networks.load(),
66
wallets: wallets.load(),

packages/neuron-ui/src/states/init/updater.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const appUpdaterState: Readonly<State.AppUpdater> = {
1+
const appUpdaterState: State.AppUpdater = {
22
checking: false,
33
downloadProgress: -1,
44
version: '',

packages/neuron-ui/src/states/init/wallet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { addresses, currentWallet } from 'services/localCache'
22

3-
export const emptyWallet: Readonly<State.Wallet> = {
3+
export const emptyWallet: State.Wallet = {
44
name: '',
55
id: '',
66
balance: '0',
@@ -9,7 +9,7 @@ export const emptyWallet: Readonly<State.Wallet> = {
99

1010
const wallet = currentWallet.load()
1111

12-
export const walletState: Readonly<State.Wallet> = {
12+
export const walletState: State.Wallet = {
1313
name: wallet.name || '',
1414
id: wallet.id || '',
1515
balance: '0',

0 commit comments

Comments
 (0)