0.1.0
-----

Version 0.1.0 of Ruby/AWS has undergone fundamental changes from the previous,
very crude versions, 0.0.1 and 0.0.2.

For one thing, the AWS XML parser has been completely rewritten. In this new
version, classes are dynamically generated as required, based on the elements
present in the XML pages returned by AWS.

Previous versions of Ruby/AWS (and also Ruby/Amazon), manually defined most
of these classes, based on Amazon's developer documentation and examination of
AWS XML reponses. This time-consuming, unwieldy and unnecessary approach was
largely the result of my own lack of aptitude with the Ruby REXML library.

While these manually defined classes accounted for much of the data returned
by AWS, a smaller section of the data was, nevertheless, dynamically converted
to Ruby data structures. This mix of manually and automatically treated
objects led to inconsistencies in the Ruby representation of the hierarchical
XML structure. This meant that it was not quite possible to look at an AWS XML
response and reliably determine how the resulting Ruby data structure would
look.

That inconsistency has been ironed out in version 0.1.0. As of now,
_everything_ is dynamically generated from the AWS XML response. All manual
class definitions have been removed and all classes are now defined at the
time they first need to be instantiated.

This has the following advantages:

- Changes in the structure of AWS XML responses will not break Ruby/AWS. They
  may break user code (if, for example, you depend on the presence of a piece
  of data that later disappears from AWS responses [and even this should not
  happen, because AWS v4 has a versioned API]), but they will not break the
  library. The library will always create whichever classes are needed to
  represent any given XML structure returned by AWS.

- Changes in the structure of AWS XML that results in new data being
  included in responses will automatically cause said data to be made
  available via Ruby/AWS. If, for example, Amazon starts to return data about
  the duration of each CD in their catalogue, perhaps using a <Duration> tag,
  foo.duration would automatically start to return that property.

- It should be faster, but I haven't verified this.

Multiple operations are now supported.

Geolocation of locale is now working.

Documentation in this version has been radically improved, but is still
lacking.
