Skip to content

Commit ecafe03

Browse files
committed
1.4.6: new release
1 parent 425d75d commit ecafe03

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@ jobs:
3131

3232
release_sentry:
3333
docker:
34-
- image: getsentry/sentry-cli
34+
- image: circleci/node:10.10-jessie
3535
working_directory: ~/ext
3636
steps:
3737
- restore_cache:
3838
key: build-{{ .Environment.CIRCLE_SHA1 }}
3939
- run:
4040
name: release sentry
4141
command: |
42+
yarn global add @sentry/cli
43+
export PATH="$PATH:$HOME/.config/yarn/global/node_modules/.bin"
4244
sentry-cli releases new ${CIRCLE_TAG}
4345
sentry-cli releases files ${CIRCLE_TAG} upload-sourcemaps dist
4446
sentry-cli releases finalize ${CIRCLE_TAG}

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v1.4.6 8/8/2019
2+
3+
- fix: crash when click item of search result
4+
- fix: data changes cannot be stored
5+
- fix: multi-operation button cannot be clicked
6+
17
### v1.4.5 5/9/2019
28

39
- fix: browser action broken in v1.4.4

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "__EXT_NAME__",
4-
"version": "1.4.5",
4+
"version": "1.4.6",
55
"default_locale": "en",
66
"description": "__MSG_ext_desc__",
77
"author": "WangJie <[email protected]>",

0 commit comments

Comments
 (0)