Skip to content

Commit

Permalink
v3.9.0 - 2018-10-01
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Oct 1, 2018
1 parent d87adee commit cd60f94
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.appveyor.yml
.circleci
.travis.yml
assets
build
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Intercept Redirect

## v3.9.0 - 2018-10-01
- Add a build script, outputs in build directory
- Move webstore assets into assets directory

## v3.8.0 - 2018-10-01
- Add icons, screenshots, and promo tile created by Janet Fu

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
9 changes: 9 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

VERSION=$1

echo "Building Intercept Redirect $VERSION"

cd webextension
zip ../build/intercept-redirect-$VERSION.zip ./* -r -9
cd ..
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "3.8.0",
"version": "3.9.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"dependencies": {},
"devDependencies": {
"mocha": "^5.2.0"
},
"scripts": {
"build": "./build.sh",
"test": "mocha test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"*://workable.com/",
"*://www.youtube.com/"
],
"version": "3.8.0"
"version": "3.9.0"
}

0 comments on commit cd60f94

Please sign in to comment.