diff --git a/CHANGELOG b/CHANGELOG index 9fc3a7c..91fb5c6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.0] - 2020-09-03 +- Fix Firefox overflow menu +- Better onboarding process +- Do not require tabs permission. + ## [2.1.0] - 2020-08-21 - Improve error alert diff --git a/README.md b/README.md index b626014..eeb4d12 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,11 @@ To run the extension locally, please follow these steps: - run `npm run watch:dev` to generate the `/dist` folder that can be installed into Chrome. -On Firefox, it can be done via `web-ext` tool from within the `/dist` folder: ` ( cd dist/ ; web-ext run )` +On Firefox, it can be done via `web-ext` tool from within the `/dist` folder: + +```bash +( cd dist/ ; web-ext run ) +``` The code is formatted using `prettier`, make sure to run it before creating the commit :). diff --git a/package.json b/package.json index 99cdf1e..32d80e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplelogin-extension", - "version": "2.1.0", + "version": "2.2.0", "betaRev": "0", "description": "SimpleLogin Browser Extension", "author": "extension@simplelogin.io",