Skip to content

Commit

Permalink
v3.1.0 - 2018-05-08
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 8, 2018
1 parent 1355f0a commit 0fb20dc
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
jobs:
install:
docker:
- image: circleci/node:8
steps:
- checkout
- run: npm install
test:
docker:
- image: circleci/node:8
steps:
- run: npm test
workflow:
install_and_test:
jobs:
- install
- test:
requires: install
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Intercept Redirect

## v3.1.0 - 2018-05-08
- Add circleci

## v3.0.0 - 2018-05-02
- Test with TAP
- Rename `src` to `webextension`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "3.0.0",
"version": "3.1.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your precious time.",
"main": "webextension/index.js",
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"*://vk.com/",
"*://www.youtube.com/"
],
"version": "3.0.0"
"version": "3.1.0"
}

0 comments on commit 0fb20dc

Please sign in to comment.