From 4512925240d9cc024c89803955951ad47db7c7ca Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 30 Jan 2012 17:57:54 -0700 Subject: [PATCH] add extra newline just to be safe --- index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ea2e8ab..7ae30ca 100644 --- a/index.js +++ b/index.js @@ -86,7 +86,7 @@ } }; - return '---' + handlers[typeOf(data)](data); + return '---' + handlers[typeOf(data)](data) + '\n'; } module.exports.stringify = stringify; diff --git a/package.json b/package.json index 332bef3..ee693e4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "json2yaml", "description": "A commandline utility to convert JSON to YAML / YML", "keywords": ["yml", "yaml", "json", "cli", "util"], - "version": "1.0.0", + "version": "1.0.1", "main": "index.js", "bin": { "json2yaml": "./cli.js",