* lib/rss/rss.rb, test/rss/test_version.rb: 0.2.6 -> 0.2.7.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2009-06-27 04:41:36 +00:00
Родитель 4b85c77e66
Коммит 23c14c3613
4 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -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

2
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.

Просмотреть файл

@ -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/"

Просмотреть файл

@ -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