Skip to content

Commit

Permalink
Merge pull request #2121 from nervosnetwork/rc/0.100.1
Browse files Browse the repository at this point in the history
Hotfix 0.100.1
  • Loading branch information
kellyshang authored Sep 29, 2021
2 parents adf4fba + 757bc0f commit 09d0f99
Show file tree
Hide file tree
Showing 17 changed files with 176 additions and 201 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# 0.100.0 (2021-09-24)
# 0.100.1 (2021-09-29)

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

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

### Hotfix
* Rename ckb-indexer data folder from `ckb-indexer` to `ckb_indexer_data`.
* [GHSA-33f9-j839-rf8h](https://github.com/advisories/GHSA-33f9-j839-rf8h): Upgrade immer to 9.0.6.


# 0.100.0 (2021-09-25)

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

Expand Down
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.100.0",
"version": "0.100.1",
"npmClient": "yarn",
"useWorkspaces": true
}
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.100.0",
"version": "0.100.1",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neuron-ui",
"version": "0.100.0",
"version": "0.100.1",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down Expand Up @@ -50,7 +50,7 @@
"canvg": "2.0.0",
"grommet-icons": "4.4.0",
"i18next": "17.0.13",
"immer": "8.0.1",
"immer": "9.0.6",
"jsqr": "1.2.0",
"office-ui-fabric-react": "7.31.1",
"qr.js": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/states/init/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const initNotifications: Array<State.Message> = [
},
]

export const appState: Readonly<State.App> = {
export const appState: State.App = {
tipBlockNumber: '',
tipBlockHash: '',
tipBlockTimestamp: 0,
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/states/init/chain.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { currentNetworkID } from 'services/localCache'
import { ConnectionStatus } from 'utils'

export const transactionState: Readonly<State.DetailedTransaction> = {
export const transactionState: State.DetailedTransaction = {
value: '',
hash: '',
type: 'receive',
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/states/init/nervosDAO.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const emptyNervosDaoData: Readonly<State.NervosDAO> = {
export const emptyNervosDaoData: State.NervosDAO = {
records: [],
}

Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/states/init/settings.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { wallets, networks } from 'services/localCache'

export const settingsState: Readonly<State.Settings> = {
export const settingsState: State.Settings = {
general: {},
networks: networks.load(),
wallets: wallets.load(),
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/states/init/updater.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const appUpdaterState: Readonly<State.AppUpdater> = {
const appUpdaterState: State.AppUpdater = {
checking: false,
downloadProgress: -1,
version: '',
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-ui/src/states/init/wallet.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { addresses, currentWallet } from 'services/localCache'

export const emptyWallet: Readonly<State.Wallet> = {
export const emptyWallet: State.Wallet = {
name: '',
id: '',
balance: '0',
Expand All @@ -9,7 +9,7 @@ export const emptyWallet: Readonly<State.Wallet> = {

const wallet = currentWallet.load()

export const walletState: Readonly<State.Wallet> = {
export const walletState: State.Wallet = {
name: wallet.name || '',
id: wallet.id || '',
balance: '0',
Expand Down
Loading

0 comments on commit 09d0f99

Please sign in to comment.