Skip to content

Commit 830adb8

Browse files
author
dessant
committed
chore(release): 1.1.0
1 parent 225b550 commit 830adb8

File tree

2 files changed

+37
-15
lines changed

2 files changed

+37
-15
lines changed

Diff for: CHANGELOG.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
<a name="1.1.0"></a>
6+
# [1.1.0](https://github.com/dessant/view-page-archive/compare/v1.0.0...v1.1.0) (2017-09-12)
7+
8+
9+
### Bug Fixes
10+
11+
* Google Cache text-only name ([ac52aec](https://github.com/dessant/view-page-archive/commit/ac52aec))
12+
* prevent navigation to a different URL when the exact match is not the first result ([3c66f9a](https://github.com/dessant/view-page-archive/commit/3c66f9a))
13+
* switch to common names for widget locations ([dfa8865](https://github.com/dessant/view-page-archive/commit/dfa8865))
14+
* use compressed style in option names ([358b336](https://github.com/dessant/view-page-archive/commit/358b336))
15+
* use full name for browser toolbar ([3e9893b](https://github.com/dessant/view-page-archive/commit/3e9893b))
16+
17+
18+
### Features
19+
20+
* ignore URL scheme while searching for a match ([6a9846b](https://github.com/dessant/view-page-archive/commit/6a9846b))
21+
* set options page title ([2cffbe2](https://github.com/dessant/view-page-archive/commit/2cffbe2))
22+
* support Chrome and Opera ([b1c3537](https://github.com/dessant/view-page-archive/commit/b1c3537))
23+
* use scope hoisting in production ([f4fbc4c](https://github.com/dessant/view-page-archive/commit/f4fbc4c))
24+
25+
26+
127
<a name="1.0.0"></a>
228
# 1.0.0 (2017-08-16)
329

@@ -11,6 +37,3 @@
1137
* Show cursor pointer when hovering above action popup buttons ([02c2d4b](https://github.com/dessant/view-page-archive/commit/02c2d4b))
1238
* Simplify yahoo node selector ([aae34a0](https://github.com/dessant/view-page-archive/commit/aae34a0))
1339
* Style fix ([b74de1f](https://github.com/dessant/view-page-archive/commit/b74de1f))
14-
15-
16-

Diff for: package.json

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "view-page-archive",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"author": "Armin Sebastian",
55
"repository": "https://github.com/dessant/view-page-archive",
66
"license": "MIT",
@@ -11,23 +11,22 @@
1111
"build:prod": "NODE_ENV=production gulp build",
1212
"build:prod:opera": "NODE_ENV=production TARGET_ENV=opera gulp build",
1313
"build:prod:chrome": "NODE_ENV=production TARGET_ENV=chrome gulp build",
14-
"build:ext:prod":
15-
"NODE_ENV=production SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
16-
"build:ext:prod:opera":
17-
"NODE_ENV=production TARGET_ENV=opera SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
18-
"build:ext:prod:chrome":
19-
"NODE_ENV=production TARGET_ENV=chrome SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
20-
"start":
21-
"web-ext run --bc --url 'about:debugging' --url 'about:addons' -s dist/",
14+
"build:ext:prod": "NODE_ENV=production SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
15+
"build:ext:prod:opera": "NODE_ENV=production TARGET_ENV=opera SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
16+
"build:ext:prod:chrome": "NODE_ENV=production TARGET_ENV=chrome SYS_DEPS=false gulp build && web-ext build -s dist/ -a artifacts/",
17+
"start": "web-ext run --bc --url 'about:debugging' --url 'about:addons' -s dist/",
2218
"exec": "yarn run build && yarn run start",
2319
"exec:prod": "yarn run build:prod && yarn run start",
24-
"inspect":
25-
"webpack --profile --json > report.json; webpack-bundle-analyzer report.json --mode static && sleep 6 && rm report.{json,html}",
20+
"inspect": "webpack --profile --json > report.json; webpack-bundle-analyzer report.json --mode static && sleep 6 && rm report.{json,html}",
2621
"update": "ncu --upgrade --upgradeAll && yarn upgrade --latest",
2722
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
2823
"release": "standard-version && git push --follow-tags origin master"
2924
},
30-
"browserslist": ["Chrome >= 55", "Firefox >= 52", "Opera >= 42"],
25+
"browserslist": [
26+
"Chrome >= 55",
27+
"Firefox >= 52",
28+
"Opera >= 42"
29+
],
3130
"dependencies": {
3231
"@material/button": "^0.5.0",
3332
"@material/checkbox": "^0.4.5",

0 commit comments

Comments
 (0)