diff --git a/.circleci/config.yml b/.circleci/config.yml index 2a299d9..0be6c77 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: - run: yarn build - save_cache: key: build-{{ .Environment.CIRCLE_SHA1 }} - paths: ~/ext + paths: ~/ext/dist.zip publish: docker: @@ -41,14 +41,14 @@ jobs: command: | yarn global add chrome-webstore-upload-cli export PATH="$PATH:$HOME/.config/yarn/global/node_modules/.bin" - webstore upload --source dist.zip --extension-id $EXTENSION_ID + webstore upload --source dist.zip --extension-id $EXTENSION_ID --auto-publish release: docker: - image: circleci/golang:1.9 steps: - run: - key: download + name: download command: wget "https://clients2.google.com/service/update2/crx?response=redirect&prodversion=49.0&x=id%3D${EXTENSION_ID}%26installsource%3Dondemand%26uc" - run: go get github.com/tcnksm/ghr - run: @@ -63,20 +63,32 @@ jobs: workflows: version: 2 + main: jobs: - - install_dependencies + - install_dependencies: + filters: + tags: + only: /^v.*/ - build: requires: - install_dependencies + filters: + tags: + only: /^v.*/ - publish: requires: - build filters: - branches: - ignore: /.*/ tags: only: /^v.*/ + branches: + ignore: /.*/ - release: requires: - publish + filters: + tags: + only: /^v.*/ + branches: + ignore: /.*/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d946a..41a92c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.2.0 8/12/2018 + + - fix: some problem left over last version + - feat: allow store two sides + - feat: auto disable + - change: group options + - feat: add an option to allow cover browser action when current page is new tab page + ### v1.1.3 8/6/2018 - fix: remove list item will not open the tab diff --git a/src/manifest.json b/src/manifest.json index 7197c63..0f32a31 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "__MSG_ext_name__", - "version": "1.1.3", + "version": "1.2.0", "default_locale": "en", "description": "__MSG_ext_desc__", "author": "WangJie ",