Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit 917c6f6

Browse files
committed
0.2.4
1 parent b201b96 commit 917c6f6

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.2.4 - 2016-06-28
2+
3+
- Fixed: ``refresh`` should now work (use `this.parseDOM` for refresh)
4+
([#67](https://github.com/MoOx/pjax/pull/67) - @compressed)
5+
- Fixed: Some attributes, such as `itemscope` have no corresponding value.
6+
This change allows them to still be set.
7+
([#67](https://github.com/MoOx/pjax/pull/67) - @compressed)
8+
- Added: ``cacheBust`` option
9+
([#71](https://github.com/MoOx/pjax/pull/71) - @tremby)
10+
111
# 0.2.3 - 2016-03-24
212

313
- Fixed: ``currentUrlFullReload`` option now works

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
55
"keywords": [
66
"pjax",

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
55
"keywords": [
66
"pjax",
@@ -26,6 +26,7 @@
2626
"jscs": "^1.6.2",
2727
"jshint": "^2.5.6",
2828
"npmpub": "^3.1.0",
29+
"opn-cli": "^3.1.0",
2930
"serve": "1.4.0",
3031
"tape": "^3.0.0",
3132
"testling": "^1.6.1"
@@ -37,9 +38,10 @@
3738
"test": "npm run lint && npm run standalone && npm run tests",
3839
"test--html": "testling --html > tests/scripts/index.html",
3940
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify",
40-
"example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .",
41+
"example": "opn http://localhost:3000/example/; serve .",
4142
"prepublish": "npm run standalone",
42-
"release": "npmpub --skip-test --dry && npm test && npmpub --skip-cleanup"
43+
"#release": "testling does not work in a process launch by npm... :facepalm:",
44+
"release": "echo \"npmpub --skip-test --dry && npm test && npmpub --skip-test --skip-cleanup\""
4345
},
4446
"testling": {
4547
"files": "tests/**/*.js",

0 commit comments

Comments
 (0)