diff --git a/CHANGELOG.md b/CHANGELOG.md index cc27aa0f3..206c897da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ zombie.js-changelog(7) -- Changelog =================================== -### Version 0.8.14 Pending +### Version 0.9.0 2011-02-17 -New isolated contexts for executing JavaScript. +New isolated contexts for executing JavaScript. This solves a long +standing problems with pages that have more than one script. Briefly +speaking, each window gets it's own context/global scope that is shared +by all scripts loaded for that page, but isolated from all other +windows. Fixed error handling on timeout/XHR scripts, these now generate an `onerror` event. diff --git a/index.js b/index.js deleted file mode 100644 index 37b5b141d..000000000 --- a/index.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require("./lib/zombie") diff --git a/package.json b/package.json index c8c4bbccf..650dfe341 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "name": "zombie", - "version": "0.8.13", + "version": "0.8.14", "description": "Insanely fast, full-stack, headless browser testing using Node.js", "homepage": "http://zombie.labnotes.org/", "author": "Assaf Arkin (http://labnotes.org/)", + "contributors": [], "keywords": [ "test", "tests", "testing", "TDD", "spec", "specs", "BDD", "headless", "browser", "html", "html5", "dom", "css", "javascript", "integration", "ajax", "full-stack" ], "directories": { @@ -24,6 +25,7 @@ "TODO.md", "xpath" ], + "main": "lib/zombie/index.js", "scripts": { "install": "node-waf configure build", "build": "cake build", @@ -33,7 +35,7 @@ "node": ">= 0.2.6" }, "dependencies": { - "html5": "0.2.13", + "html5": "0.2.14", "jsdom": "0.1.23", "mime": "1.2.1" }, @@ -48,12 +50,9 @@ "type": "git", "url": "https://assaf@github.com/assaf/zombie.git" }, - "bugs": { - "url": "http://github.com/assaf/zombie/issues" - }, + "bugs": { "url": "http://github.com/assaf/zombie/issues" }, "licenses": [ - { - "type": "MIT", + { "type": "MIT", "url": "http://github.com/assaf/zombie/raw/master/MIT-LICENSE" } ]