Skip to content

Commit

Permalink
v3.2.2 - 2018-05-08
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 8, 2018
1 parent 119ab90 commit f115495
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version: 2

jobs:
build:
docker:
Expand All @@ -11,9 +12,12 @@ jobs:
- image: circleci/node:8
steps:
- run: npm test

workflows:
version: 2
build_and_test:
jobs:
- build
- test:
requires: build
requires:
- build
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Intercept Redirect

## v3.2.2 - 2018-05-08
- Actually add travis badge to README
- [CircleCI] Add version to workflows
- [CircleCI] Requires should be a map
- [CircleCI] Fix spacing for test

## v3.2.1 - 2018-05-08
- Add travis badge to README

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Intercept Redirect
# Intercept Redirect [![Build Status](https://travis-ci.org/bjornstar/intercept-redirect.svg?branch=master)](https://travis-ci.org/bjornstar/intercept-redirect)

Skip tracking redirects that serve no purpose other than to waste your precious time.
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.1",
"version": "3.2.2",
"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.1"
"version": "3.2.2"
}

0 comments on commit f115495

Please sign in to comment.