From d15f41b0eb0f284cb15ee814c691e556ae20d8b1 Mon Sep 17 00:00:00 2001 From: ser Date: Fri, 23 Apr 2004 15:44:30 +0000 Subject: * Non-String attributes are now converted to Strings; this means code such as elem.attributes["a"] = 1 will not cause an error when dumping the XML. It also means that: elem.attributes["a"] # => "1", not 1 * Transitive indenting has been cleaned up. * Fixed a potential bug in parsing non-ASCII encoded streams * Fixed a bug where trying to fill in ParseException data was causing an IO error (stream closed) * Changes to Text mean that Element (and Text) can be used outside of a Document context. * In some rare cases, the base parser wasn't reading enough bytes from the stream for the parsing algorithm to work properly. This has been fixed (this was Ruby bug #48426) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/rexml.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/rexml/rexml.rb') diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb index 18bdbc337d..200f2c03aa 100644 --- a/lib/rexml/rexml.rb +++ b/lib/rexml/rexml.rb @@ -10,13 +10,17 @@ # # Main page:: http://www.germane-software.com/software/rexml # Author:: Sean Russell -# Version:: 3.0.3 -# Date:: +2004/098 +# Version:: 3.0.4 +# Date:: +2004/114 # # This API documentation can be downloaded from the REXML home page, or can # be accessed online[http://www.germane-software.com/software/rexml_doc] +# +# A tutorial is available in the REXML distribution in docs/tutorial.html, +# or can be accessed +# online[http://www.germane-software.com/software/rexml/docs/tutorial.html] module REXML Copyright = "Copyright © 2001, 2002, 2003, 2004 Sean Russell " - Date = "+2004/098" - Version = "3.0.3" + Date = "+2004/114" + Version = "3.0.4" end -- cgit v1.2.3