diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fefcc72c8..d016270f1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,18 @@ +# 0.101.1 (2021-11-29) + +[CKB v0.101.0](https://github.com/nervosnetwork/ckb/releases/tag/v0.101.0) was released on Oct. 20th, 2021. This version of CKB node is now bundled and preconfigured in Neuron. + +**The CKB v0.101.0 activates ckb2021 since epoch 3113 in the testnet. After that nodes running this version are incompatible with old versions. However, this version is still compatible with CKB v0.25.0 and above in the mainnet.** + +### New feature +* Remove 100-char limitation from sending addresses. + + # 0.101.0 (2021-10-27) [CKB v0.101.0](https://github.com/nervosnetwork/ckb/releases/tag/v0.101.0) was released on Oct. 20th, 2021. This version of CKB node is now bundled and preconfigured in Neuron. -**The CKB v0.101.0 activates ckb2021 since epoch 3113 in the testnet. After that nodes running this version are imcompatible with old versions. However, this version is still compatible with CKB v0.25.0 and above in the mainnet.** +**The CKB v0.101.0 activates ckb2021 since epoch 3113 in the testnet. After that nodes running this version are incompatible with old versions. However, this version is still compatible with CKB v0.25.0 and above in the mainnet.** ### New feature * Upgrade the bundled CKB version and CKB-Indexer version. diff --git a/lerna.json b/lerna.json index 09ba5b3163..46564735a3 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.101.0", + "version": "0.101.1", "npmClient": "yarn", "useWorkspaces": true } diff --git a/package.json b/package.json index eafc4eab2c..6212450adb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "neuron", "productName": "Neuron", "description": "CKB Neuron Wallet", - "version": "0.101.0", + "version": "0.101.1", "private": true, "author": { "name": "Nervos Core Dev", diff --git a/packages/neuron-ui/package.json b/packages/neuron-ui/package.json index a7ea3136bb..eb775b0625 100644 --- a/packages/neuron-ui/package.json +++ b/packages/neuron-ui/package.json @@ -1,6 +1,6 @@ { "name": "neuron-ui", - "version": "0.101.0", + "version": "0.101.1", "private": true, "author": { "name": "Nervos Core Dev", diff --git a/packages/neuron-ui/src/components/SendFieldset/index.tsx b/packages/neuron-ui/src/components/SendFieldset/index.tsx index 95a516d866..ec0efe2338 100644 --- a/packages/neuron-ui/src/components/SendFieldset/index.tsx +++ b/packages/neuron-ui/src/components/SendFieldset/index.tsx @@ -90,7 +90,6 @@ const SendFieldset = ({ value={item.address || ''} onChange={onItemChange} required - maxLength={100} error={addrErrorMsg} autoFocus /> diff --git a/packages/neuron-wallet/package.json b/packages/neuron-wallet/package.json index ca2033cef9..dda7ffd2bc 100644 --- a/packages/neuron-wallet/package.json +++ b/packages/neuron-wallet/package.json @@ -3,7 +3,7 @@ "productName": "Neuron", "description": "CKB Neuron Wallet", "homepage": "https://www.nervos.org/", - "version": "0.101.0", + "version": "0.101.1", "private": true, "author": { "name": "Nervos Core Dev", @@ -86,7 +86,7 @@ "electron-notarize": "0.2.1", "jest-when": "2.7.2", "lint-staged": "9.2.5", - "neuron-ui": "0.101.0", + "neuron-ui": "0.101.1", "rimraf": "3.0.0", "ttypescript": "1.5.10" }