forked from maik/xml-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
executable file
·79 lines (63 loc) · 2.28 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Version 1.1.5:
- Changed included file name to match gem name (less confusing
for new users) - Amos Bieler
- Added 'AttrToSymbol' option that converts attribute
names to Ruby symbols - Amos Bieler
Version 1.1.4:
- Fixed bug in has_mixed_content? reported by Dan Kubb.
Version 1.1.3:
- Cleaned up gemspec.
Version 1.0.14:
- XmlSimple.xml_in now supports symbols for option names (fix provided
by Bruce Adams).
Version 1.0.13:
- Fixed a bug that led to problems when outputting symbols on Ruby 1.8.x
(reported by Chris St. John).
Version 1.0.12:
- Works with Ruby 1.9.1, 1.8.x
- Accepts compressed XML documents represented by Zlib::GzipReader objects
(added by Jay Lawrence).
- Added 'AttrPrefix' option (contributed by Reid Morrison).
Version 1.0.11:
- Ken Mitchell fixed a bug in option handling.
Version 1.0.10:
- Nick Sieger fixed node_to_text.
Version 1.0.9:
- Added 'KeyToSymbol' option that converts Tag names to ruby
symbols - Keith Veleba
- Fixed a bug in markup decoding and encoding. Reported by
Yan Zhang.
Version 1.0.6:
- Fixed a bug (reported by Curtis Schofield) that led to
problems with empty elements that had only attributes.
Version 1.0.5:
- Corrected version info in INSTALL file.
Version 1.0.4:
- Fixed small bug in install.rb.
Version 1.0.3:
- Works with Ruby 1.8.0 and current REXML now.
Version 1.0.2:
- All objects can be encoded now by value_to_xml. The Perl
version excluded blessed references, but in Ruby each
object has a to_s method, so this restriction wasn't
necessary. Thanx to Daniel Wu for "pointing" this out.
Version 1.0.1:
- Removed a bug (reported by Paul DuBois) that led to a
warning in XmlSimple.initialize.
Version 1.0.0:
- Added three caching models.
- Option names are case insensitive now and underscores
are no longer significant, i.e.
force_array == ForceArray == forcearray == fOR__CEArray
- 'force_array' option additionally works with regexes
now.
- Added 'indent' option that allows to specify an
arbitrary string to be used for indentation by
xml_out.
- Added 'GroupTags' option.
- Added 'Variables' option.
- Added 'VarAttr' option.
- Added 'NormaliseSpace' option.
- Added 'NoIndent' option.
Version 0.6.0:
- First working version.