diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f425101e80..009c842cd700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## Current Develop Branch +## 0.1.0 Fri Mar 27 2020 +- Sync Version v0.0.9 RC (#58) from master (#60) +- new sign logic (#62) +- Change logo, mail, faq, tos links (#63) + ## 0.0.9 Thu Mar 12 2020 +- Version v0.0.8 (#49) +- Fix: changelog.md (#50) +- Fix e2e tests (#56) +- Add rlp to support new version of testnet (#57) ## 0.0.8 Tue Feb 20 2020 - update/cleanup packages (#46) diff --git a/app/manifest.json b/app/manifest.json index de00bf4599cb..c6da615363bd 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "0.0.9", + "version": "0.1.0", "manifest_version": 2, "author": "https://conflux-chain.org", "description": "__MSG_appDescription__", @@ -32,7 +32,11 @@ }, "default_locale": "en", "background": { - "scripts": ["chromereload.js", "bg-libs.js", "background.js"], + "scripts": [ + "chromereload.js", + "bg-libs.js", + "background.js" + ], "persistent": true }, "browser_action": { @@ -50,14 +54,24 @@ }, "content_scripts": [ { - "matches": ["file://*/*", "http://*/*", "https://*/*"], - "js": ["contentscript.js"], + "matches": [ + "file://*/*", + "http://*/*", + "https://*/*" + ], + "js": [ + "contentscript.js" + ], "run_at": "document_start", "all_frames": true }, { - "matches": ["*://connect.trezor.io/*/popup.html"], - "js": ["vendor/trezor/content-script.js"] + "matches": [ + "*://connect.trezor.io/*/popup.html" + ], + "js": [ + "vendor/trezor/content-script.js" + ] } ], "permissions": [ @@ -72,9 +86,17 @@ "*://*.eth/", "notifications" ], - "web_accessible_resources": ["inpage.js", "phishing.html"], + "web_accessible_resources": [ + "inpage.js", + "phishing.html" + ], "externally_connectable": { - "matches": ["https://metamask.io/*", "https://conflux-chain.org/*"], - "ids": ["*"] + "matches": [ + "https://metamask.io/*", + "https://conflux-chain.org/*" + ], + "ids": [ + "*" + ] } } diff --git a/development/auto-changelog.sh b/development/auto-changelog.sh index e49328f56f22..e682ff18b734 100755 --- a/development/auto-changelog.sh +++ b/development/auto-changelog.sh @@ -8,7 +8,7 @@ set -o pipefail git fetch --tags -most_recent_tag="$(git describe --tags "$(git rev-list --tags --max-count=1)")" +most_recent_tag="$(git describe --tags "$(git rev-list --tags='v0.*.*' --max-count=1)")" git rev-list "${most_recent_tag}"..HEAD | while read -r commit do