From 9b20276d78aae1e97206750d4044e71ff962ea04 Mon Sep 17 00:00:00 2001 From: kou Date: Sat, 27 Jun 2009 04:41:36 +0000 Subject: * NEWS: rss: 0.2.5 -> 0.2.7. * lib/rss/rss.rb, test/rss/test_version.rb: 0.2.6 -> 0.2.7. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ NEWS | 2 +- lib/rss/rss.rb | 2 +- test/rss/test_version.rb | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 514d6b1c4..75ca65031 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Jun 27 13:41:00 2009 Kouhei Sutou + + * NEWS: rss: 0.2.5 -> 0.2.7. + + * lib/rss/rss.rb, test/rss/test_version.rb: 0.2.6 -> 0.2.7. + Sat Jun 27 03:16:56 2009 Yukihiro Matsumoto * numeric.c (int_chr): use default_internal encoding as default diff --git a/NEWS b/NEWS index d06409071..7ea63ff7a 100644 --- a/NEWS +++ b/NEWS @@ -72,7 +72,7 @@ with all sufficient information, see the ChangeLog file. * rss - * 0.2.4 -> 0.2.5 + * 0.2.4 -> 0.2.7. * RSS::Maker.make * raise an exception not returns nil for invalid feed making. diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb index 9fedb1083..6f008049c 100644 --- a/lib/rss/rss.rb +++ b/lib/rss/rss.rb @@ -53,7 +53,7 @@ require "rss/xml-stylesheet" module RSS - VERSION = "0.2.6" + VERSION = "0.2.7" URI = "http://purl.org/rss/1.0/" diff --git a/test/rss/test_version.rb b/test/rss/test_version.rb index ee94b80f1..17679012d 100644 --- a/test/rss/test_version.rb +++ b/test/rss/test_version.rb @@ -3,7 +3,7 @@ require "rss-testcase" module RSS class TestVersion < TestCase def test_version - assert_equal("0.2.6", ::RSS::VERSION) + assert_equal("0.2.7", ::RSS::VERSION) end end end -- cgit