CHANGES 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. = Change Log
  2. == Version 2.2.0
  3. * Applied patch from Thijs van der Vossen to allow UTF-8 encoded
  4. output when the encoding is UTF-8 and $KCODE is UTF8.
  5. == Version 2.1.2
  6. * Fixed bug where private methods in kernel could leak through using
  7. tag!(). Thanks to Hagen Overdick for finding and diagnosing this
  8. bug.
  9. == Version 2.1.1
  10. * Fixed typo in XmlMarkup class docs (ident => indent). (from Martin
  11. Fowler).
  12. * Removed extra directory indirection from legacy CVS to SVN move.
  13. * Removed some extraneous tabs from source.
  14. * Fixed test on private methods in blankslate to differentiate between
  15. targetted and untargetted private methods.
  16. * Removed legacy capture of @self in XmlBase (@self was used back when
  17. we used instance eval).
  18. * Added additional tests for global functions (both direct and included).
  19. == Version 2.1.0
  20. * Fixed bug in BlankSlate where including a module into Object could
  21. cause methods to leak into BlankSlate.
  22. * Made BlankSlate available as its own gem. Currently the builder gem
  23. still directly includes the BlankSlate code.
  24. * Added reveal capability to BlankSlate.
  25. == Version 2.0.0
  26. * Added doc directory
  27. * Added unit tests for XmlEvents.
  28. * Added XChar module and used it in the _escape method.
  29. * Attributes are now quoted by default when strings. Use Symbol
  30. attribute values for unquoted behavior.
  31. == Version 1.2.4
  32. * Added a cdata! command to an XML Builder (from Josh Knowles).
  33. == Version 1.2.3
  34. The attributes in the <?xml ... ?> instruction will be ordered:
  35. version, encoding, standalone.
  36. == Version 1.2.2
  37. Another fix for BlankSlate. The Kernal/Object traps added in 1.2.1
  38. failed when a method was defined late more than once. Since the
  39. method was already marked as removed, another attempt to undefine it
  40. raised an error. The fix was to check the list of instance methods
  41. before attempting the undef operation. Thanks to Florian Gross and
  42. David Heinemeier Hansson for the patch.
  43. == Version 1.2.1
  44. BlankSlate now traps method definitions in Kernel and Object to avoid
  45. late method definitions inadvertently becoming part of the definition
  46. of BlankSlate as well.
  47. == Version 1.2.0
  48. Improved support for entity declarations by allowing nested
  49. declarations and removal of the attribute processing.
  50. Added namespace support.
  51. == Version 1.1.0
  52. Added support for comments, entity declarations and processing instructions.
  53. == Version 1.0.0
  54. Removed use of <tt>instace_eval</tt> making the use of XmlMarkup much
  55. less prone to error.
  56. == Version 0.1.1
  57. Bug fix.
  58. == Version 0.1.0
  59. Initial version release.