summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/rss/rss.rb2
-rw-r--r--test/rss/test_version.rb2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ced5f2df8..78ed8abd7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Nov 16 01:26:13 2005 Kouhei Sutou <kou@cozmixng.org>
+
+ * lib/rss/rss.rb (RSS::VERSION): 0.1.5 -> 0.1.6.
+
+ * test/rss/test_version.rb (RSS::TestVersion#test_version): ditto.
+
Tue Nov 15 23:54:24 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (file_load_ok): eaccess() returns 0 on success.
diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb
index 0d3da8b51a..fc0cd7b1c6 100644
--- a/lib/rss/rss.rb
+++ b/lib/rss/rss.rb
@@ -59,7 +59,7 @@ require "rss/xml-stylesheet"
module RSS
- VERSION = "0.1.5"
+ VERSION = "0.1.6"
URI = "http://purl.org/rss/1.0/"
diff --git a/test/rss/test_version.rb b/test/rss/test_version.rb
index dbed60b4d8..237f364b20 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.1.5", ::RSS::VERSION)
+ assert_equal("0.1.6", ::RSS::VERSION)
end
end
end