diff --git a/HISTORY.md b/HISTORY.md index 18dd25c3..ba91821b 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,8 @@ # History +- v6.63.8 February 26, 2014 + - Fixed "Object # has no method err" (regression since v6.37.7) + - v6.63.7 February 21, 2014 - Fixed IE9 and below not understanding the charset we send - Thanks to [Eric Vantillard](https://github.com/evantill) for [issue #801](https://github.com/bevry/docpad/pull/801) diff --git a/package.json b/package.json index c1dcec47..018f2049 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "title": "DocPad. Streamlined web development.", "name": "docpad", - "version": "6.63.7", + "version": "6.63.8", "description": "DocPad is a next generation web architecture that lets you create fast static websites with dynamic abilities and powerful abstractions. Write your website as files on your computer, entries in a database, or even RSS feeds and DocPad will import it, generate & render it, then output a static website for deployment anywhere or a dynamic node website for advanced server-side functionality. Use it as a module or standalone. It's purely awesome. Check it out.", "homepage": "http://docpad.org", "installUrl": "http://docpad.org/install", diff --git a/src/lib/docpad.coffee b/src/lib/docpad.coffee index bd777b9d..da7b5cc3 100755 --- a/src/lib/docpad.coffee +++ b/src/lib/docpad.coffee @@ -3939,7 +3939,7 @@ class DocPad extends EventEmitterGrouped So the DocPad team can fix this right away, please provide any information you can to: https://github.com/bevry/docpad/issues/792 """) - return docpad.err(err) + return docpad.error(err) # Log the change docpad.log 'info', util.format(locale.watchChange, new Date().toLocaleTimeString()), changeType, filePath