summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-27 04:41:36 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-27 04:41:36 +0000
commit9b20276d78aae1e97206750d4044e71ff962ea04 (patch)
treef256d9dd4a1dfa252878657a0f8a898ed94a2c02
parentd71d2713ca879efe1644982acfdc59860edbae17 (diff)
downloadruby-9b20276d78aae1e97206750d4044e71ff962ea04.tar.gz
ruby-9b20276d78aae1e97206750d4044e71ff962ea04.tar.xz
ruby-9b20276d78aae1e97206750d4044e71ff962ea04.zip
* 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
-rw-r--r--ChangeLog6
-rw-r--r--NEWS2
-rw-r--r--lib/rss/rss.rb2
-rw-r--r--test/rss/test_version.rb2
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 <kou@cozmixng.org>
+
+ * 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 <matz@ruby-lang.org>
* 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