summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/rss/rss.rb2
-rw-r--r--test/rss/test_version.rb2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 621982e03..c2c71b9a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat May 16 17:47:55 2009 Kouhei Sutou <kou@cozmixng.org>
+
+ * lib/rss/rss.rb, test/rss/test_version.rb (RSS::VERSION):
+ 0.2.5 -> 0.2.6.
+
Sat May 16 17:26:04 2009 Narihiro Nakamura <authorNari@gmail.com>
* iseq.c (rb_iseq_clone): use longlife object and insert write barrier.
diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb
index d1f6181a4..9fedb1083 100644
--- a/lib/rss/rss.rb
+++ b/lib/rss/rss.rb
@@ -53,7 +53,7 @@ require "rss/xml-stylesheet"
module RSS
- VERSION = "0.2.5"
+ VERSION = "0.2.6"
URI = "http://purl.org/rss/1.0/"
diff --git a/test/rss/test_version.rb b/test/rss/test_version.rb
index fefdb1e0f..ee94b80f1 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.5", ::RSS::VERSION)
+ assert_equal("0.2.6", ::RSS::VERSION)
end
end
end