Skip to content

Commit

Permalink
v3.2.3 - 2018-05-08
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 8, 2018
1 parent f115495 commit b5ac036
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@ jobs:
steps:
- checkout
- run: npm install
- save_cache:
keys:
- node_modules-{{ .Branch }}-{{ .Revision }}
paths:
- node_modules

test:
docker:
- image: circleci/node:8
steps:
- checkout
- restore_cache:
keys:
- node_modules-{{ .Branch }}-{{ .Revision }}
- run: npm test

workflows:
Expand Down
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.2.3 - 2018-05-08
- [CircleCI] Cache node_modules to share among jobs

## v3.2.2 - 2018-05-08
- Actually add travis badge to README
- [CircleCI] Add version to workflows
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.2.2",
"version": "3.2.3",
"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.2.2"
"version": "3.2.3"
}

0 comments on commit b5ac036

Please sign in to comment.