From cf0a4545ffc18d30d3338862ab343a3da00548ea Mon Sep 17 00:00:00 2001 From: Dylan Greene Date: Wed, 3 Jul 2013 23:53:08 -0400 Subject: [PATCH] bump version, fix test --- package.json | 5 +++-- readme.md | 6 +++--- test/test.js | 1 + 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ffa7c83..4ec4104 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rss", - "version": "0.1.0", + "version": "0.2.0", "description": "RSS feed generator. A really simple API to add RSS feeds to any project.", "homepage": "http://github.com/dylang/node-rss", "author": "Dylan Greene ", @@ -8,7 +8,8 @@ "Dylan Greene ", "Xavier Damman ", "Michael R. Lange", - "Victor Jonsson" + "Victor Jonsson", + "Danny Graham" ], "repository": { diff --git a/readme.md b/readme.md index f7d61fe..59362e2 100644 --- a/readme.md +++ b/readme.md @@ -26,9 +26,9 @@ image_url: 'http://example.com/icon.png', docs: 'http://example.com/rss/docs.html', author: 'Dylan Greene', - managingEditor: 'Dylan Green', - webMaster: 'Dylan Green', - copyright: '2013 Dylan Green', + managingEditor: 'Dylan Greene', + webMaster: 'Dylan Greene', + copyright: '2013 Dylan Greene', language: 'en', categories: ['Category 1','Category 2','Category 3'], pubDate: 'May 20, 2012 04:00:00 GMT', diff --git a/test/test.js b/test/test.js index 0c38b0d..50e0731 100644 --- a/test/test.js +++ b/test/test.js @@ -170,6 +170,7 @@ module.exports = { }); var expectedResult = '\n<![CDATA[title]]>http://example.comNodeJS RSS Module' + new Date().toUTCString() +''+ + '' + '<![CDATA[item 1]]>http://example.com/article1http://example.com/article1Thu, 24 May 2012 04:00:00 GMT'+ '<![CDATA[item 2]]>http://example.com/article1http://example.com/article1Thu, 24 May 2012 04:00:00 GMT'+ '<![CDATA[item 3]]>http://example.com/article1http://example.com/article1Thu, 24 May 2012 04:00:00 GMT'+