------------------
+ Migrated to Babel 2.2 or higher. New CLDR and new API for ``babel.numbers.format_currency()`` (reported by `chrisrossi <https://github.com/chrisrossi>`_).
+ Dropped support for Python 3.3
+ XMoney now only attempts automatic currency conversion in addition, substraction, and division.
Before, XMoney would convert currencies in comparison, including >= and <=, with results that were inconsistent with ==.
+ Comparison operators ``<``, ``<=``, ``>``, ``>=`` now throw ``InvalidOperandType`` (TypeError) if the operand is not a Money object. Code that relies on this should be updated to access the amount value explicitly (see example below).
.. code:: python
>>> m = Money(2, 'USD')
old code
>>> m > 0
(raises InvalidOperandType)
1.3.x
>>> m.amount > 0
True