Skip to content

Commit

Permalink
v3.1.1 - 2018-05-08
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 8, 2018
1 parent 0fb20dc commit 666098f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
jobs:
install:
build:
docker:
- image: circleci/node:8
steps:
Expand All @@ -11,9 +11,9 @@ jobs:
- image: circleci/node:8
steps:
- run: npm test
workflow:
install_and_test:
workflows:
build_and_test:
jobs:
- install
- build
- test:
requires: install
requires: 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.1.1 - 2018-05-08
- `workflows` instead of `workflow`
- `build` instead of `install`

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

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.1.0",
"version": "3.1.1",
"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.1.0"
"version": "3.1.1"
}

0 comments on commit 666098f

Please sign in to comment.