diff --git a/CHANGELOG.md b/CHANGELOG.md index 462c3d8..b1dd230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.2.4 - 2016-06-28 + +- Fixed: ``refresh`` should now work (use `this.parseDOM` for refresh) + ([#67](https://github.com/MoOx/pjax/pull/67) - @compressed) +- Fixed: Some attributes, such as `itemscope` have no corresponding value. + This change allows them to still be set. + ([#67](https://github.com/MoOx/pjax/pull/67) - @compressed) +- Added: ``cacheBust`` option + ([#71](https://github.com/MoOx/pjax/pull/71) - @tremby) + # 0.2.3 - 2016-03-24 - Fixed: ``currentUrlFullReload`` option now works diff --git a/bower.json b/bower.json index 91c598d..6cc7c13 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "pjax", - "version": "0.2.3", + "version": "0.2.4", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "keywords": [ "pjax", diff --git a/package.json b/package.json index ba12816..6d1be88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pjax", - "version": "0.2.3", + "version": "0.2.4", "description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)", "keywords": [ "pjax", @@ -26,6 +26,7 @@ "jscs": "^1.6.2", "jshint": "^2.5.6", "npmpub": "^3.1.0", + "opn-cli": "^3.1.0", "serve": "1.4.0", "tape": "^3.0.0", "testling": "^1.6.1" @@ -37,9 +38,10 @@ "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", - "example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .", + "example": "opn http://localhost:3000/example/; serve .", "prepublish": "npm run standalone", - "release": "npmpub --skip-test --dry && npm test && npmpub --skip-cleanup" + "#release": "testling does not work in a process launch by npm... :facepalm:", + "release": "echo \"npmpub --skip-test --dry && npm test && npmpub --skip-test --skip-cleanup\"" }, "testling": { "files": "tests/**/*.js",