From 523171a257e69920064607961ea6678f51d58040 Mon Sep 17 00:00:00 2001 From: Lon Ingram Date: Fri, 27 Sep 2013 17:15:14 -0500 Subject: [PATCH] Bump version and cut release Also add repo to package.json so npm will stfu --- README.md | 12 ++++++++++++ package.json | 6 +++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7864dfe..a614e66 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,18 @@ The following make parameters are supported (defaults are in parentheses): ## Release Notes +### 0.2.4 + +- support CasperJS v1.0.3+ (thanks @rumca and @ucarbehlul) +- use a spec-compliant implementation of `Function.prototype.bind` +- add `options.child.spawnOptions`: its value is passed thru as the `options` + argument to `child_process.spawn` +- serialize function and function tuple values in `options.casper` +- teach test to throw if Spooky emits an error +- implement `withFrame`, `withPopup`, and `waitForPopup` (thanks @asciidisco) +- use HTTP transport by default in hello example +- fix invalid argument order in `RequestStream._onError` (Dmitry Menshikov) + ### 0.2.3 - Allow casper restart in stdio server (@kpdecker) diff --git a/package.json b/package.json index f085e13..e7698ce 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,12 @@ { "name": "spooky", - "version": "0.2.3", + "version": "0.2.4", "author": "Lon Ingram ", "description": "Drive CasperJS from Node.js", + "repository" : { + "type" : "git", + "url" : "http://github.com/WaterfallEngineering/SpookyJS.git" + }, "main": "./lib/spooky.js", "dependencies": { "underscore": "1.3.x",