diff --git a/.github/ISSUE_TEMPLATE/bug_report_template.yml b/.github/ISSUE_TEMPLATE/bug_report_template.yml index 24d9bdb1..1f873648 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_template.yml +++ b/.github/ISSUE_TEMPLATE/bug_report_template.yml @@ -26,6 +26,7 @@ body: label: Version description: What version of the software are you running? options: + - 1.6.0-beta.2 - 1.6.0-beta.1 - 1.5.2 - 1.5.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index e757f16d..e61e416f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.6.0-beta.2](https://github.com/agoralabs-sh/kibisis-web-extension/compare/v1.6.0-beta.1...v1.6.0-beta.2) (2023-12-05) + + +### Features + +* send native currency and asas to another account ([#37](https://github.com/agoralabs-sh/kibisis-web-extension/issues/37)) ([525727c](https://github.com/agoralabs-sh/kibisis-web-extension/commit/525727c840eea34ee6698e38a0d13f787d53f4dc)) + # [1.6.0-beta.1](https://github.com/agoralabs-sh/kibisis-web-extension/compare/v1.5.2...v1.6.0-beta.1) (2023-11-28) diff --git a/package.json b/package.json index 51fb5b98..2c396284 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agoralabs-sh/kibisis-web-extension", - "version": "1.6.0-beta.1", + "version": "1.6.0-beta.2", "description": "An AVM wallet in your browser that goes beyond just DeFi.", "main": "build/main.js", "repository": { diff --git a/src/manifest.common.json b/src/manifest.common.json index 04b9118c..b152c5aa 100644 --- a/src/manifest.common.json +++ b/src/manifest.common.json @@ -9,8 +9,12 @@ }, "content_scripts": [ { - "matches": ["*://*/*"], - "js": ["content-script.js"] + "matches": [ + "*://*/*" + ], + "js": [ + "content-script.js" + ] } ] }