From 01536bfbf57116ba5b5364318acdabd4289b6340 Mon Sep 17 00:00:00 2001 From: Maxime Thirouin Date: Sat, 12 Mar 2016 07:42:37 +0100 Subject: [PATCH] 0.2.2 Closes #55 --- CHANGELOG.md | 2 ++ bower.json | 2 +- package.json | 7 ++++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f06018f..fabd490 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# 0.2.2 - 2016-03-12 + - Fixed: added back standalone version in `./pjax.js` ([#57](https://github.com/MoOx/pjax/issues/57) - Fixed: error when using pjax with google analytics (``options`` was undefined) diff --git a/bower.json b/bower.json index d3487b3..8860341 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "pjax", - "version": "0.1.4", + "version": "0.2.2", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "keywords": [ "pjax", diff --git a/package.json b/package.json index 988b250..443be44 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pjax", - "version": "0.2.1", + "version": "0.2.2", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "keywords": [ "pjax", @@ -31,10 +31,11 @@ }, "scripts": { "lint": "jscs **/*.js && jshint . --exclude-path .gitignore", - "test": "npm run lint && npm run standalone && testling", + "standalone": "browserify index.js --standalone Pjax > pjax.js", + "tests": "testling", + "test": "npm run lint && npm run standalone && npm run tests", "test--html": "testling --html > tests/scripts/index.html", "coverage": "browserify -t coverify tests/**/*.js | testling | coverify", - "standalone": "browserify index.js --standalone Pjax > pjax.js", "example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .", "prepublish": "npm run standalone" },