aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 514d6b1c47..75ca650318 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 d064090719..7ea63ff7af 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 9fedb10830..6f008049ca 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 ee94b80f16..17679012d3 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