Skip to content

Commit

Permalink
1.2.0: release
Browse files Browse the repository at this point in the history
  • Loading branch information
cnwangjie committed Aug 11, 2018
1 parent a6fe1bd commit d65aa22
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
24 changes: 18 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- run: yarn build
- save_cache:
key: build-{{ .Environment.CIRCLE_SHA1 }}
paths: ~/ext
paths: ~/ext/dist.zip

publish:
docker:
Expand All @@ -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:
Expand All @@ -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: /.*/
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down

0 comments on commit d65aa22

Please sign in to comment.