
1.6.0:

    * Upgraded to enchant v1.5.0:
        * new Broker methods get_param() and set_param() allow
          runtime customisation of provider data
    * Added the concept of 'chunkers' to enchant.tokenize.get_tokenizer().
      These serve split split the text into large chunks of checkable tokens.
        * implemented a simple HTMLChunker class
    * Moved error classes into 'enchant.errors' for easier importing
    * Moved testcases into separate files so they're not loaded by default
    * Allowed SpellChecker to use default language if none is specified
    * Improved compatibility with Python 3

1.5.3:

    * Fixed termination conditions in English tokenization loop.
    * Improved unicode detection in English tokenizer.
    * Made enchant spellcheck all of its docstrings as part of the
      unittest suite.

1.5.2:

    * Modify utils.get_resource_filename and utils.win32_data_files for
      compatibility with py2exe (which was broken in the move to ctypes).
      Thanks to Stephen George for the fix.

1.5.1:

    * SpellChecker.add_to_personal renamed to SpellChecker.add and fixed
      to use the corresponding Dict method.

1.5.0:

    * Migrated from SWIG to ctypes:
        * now runs under PyPy!
        * also opens possibilities for Jython, IronPython, ...
    * Compatibility updates for Python 3.0, mostly around unicode strings
    * Dropped compatibility with Python 2.2

1.4.2:

    * upgrade to enchant v1.4.2
    * windows version can now be installed at a path containing
      unicode characters

1.4.0:

    * upgrade to enchant v1.4.0, with new functionality and APIs:
        * All dictionary providers now use a shared default personal word file
          (largely obsoleting the DictWithPWL class)
        * Ability to exclude words using Dict.remove, remove_from_session
        * Dict.add_to_personal renamed to Dict.add
        * Dict.is_added/Dict.is_removed for checking membership of word lists
        * unicode PWL filenames now handled correctly on Windows
    * upgrade bundled glib DLLs in Windows version

1.3.1:

    * treat combining unicode marks as letters during tokenization
    * cleanup of wxSpellCheckerDialog, thanks to Phil Mayes
    * upgrades of bundled components in Windows version
        * upgraded glib DLLs
        * latest dictionaries from OpenOffice.org
        * latest version of Hunspell

1.3.0:

   * Re-worked the tokenization API to allow filters but still
     remove non-alpha-numeric characters from words by default.
     This introduces some minor backward-incompatibilities to the
     API, hence the full minor version bump.
     	* 'fallback' argument to get_tokenizer() was removed, just
     	  catch the Error and re-try with whatever is appropriate for
     	  your application.
     	* filters should be passed into get_tokenizer() as the second
     	  argument, rather than applied as separate functions.
        * Basic whitespace-and-punctuation tokenization separated from
          the language-specific parts.
        * Internal details of Filter classes expanded and generalized
        * English tokenization rules reverted to 1.1.5 version

1.2.0:

   * Implemented "filters" that allow tokenization to skip common word
     forms such as URLs, WikiWords, email addresses etc.
   * Now ships with enchant-1.3.0, meaning:
        * PWLs can return a useful list of suggestions rather than
          the empty list
        * Hunspell replaces MySpell as the default Windows backend
   * Tokenization doesn't split words at non-alpha characters by default
   * GtkSpellCheckerDialog contributed by Fredrik Corneliusson
   * Removed deprecated functionality:
   		* Dict.add_to_personal
   		* All registry handling functionality from enchant.utils
   		* enchant.utils.SpellChecker (use enchant.checker.SpellChecker)
   * Removed PyPWL, as native enchant PWLs can now suggest corrections

1.1.5:

   * Fix hang in included MySpell (Windows distribution)
   * Workaround for some MySpell/unicode problems
   * Update to latest setuptools ez_setup.py

1.1.4:

   * No longer need to use the registry under Windows
   * Moved to setuptools for managing distribution
   * Implemented unittest TestCases, works with `python setup.py test`
   * Plugins on Windows moved to "enchant" subdirectory
   * SpellChecker now coerces to/from unicode automatically
   * Use python default encoding rather than UTF-8 where appropriate
   * Various documentation cleanups
   * bug fixes:
        * (1230151): count of live instances done by normalized key
        * Accept unicode strings as broker orderings


1.1.3:

   * support for Python 2.2
   * use 'locale' module to look up default language if none specified
   * more and better regression tests
   * mark deprecated interfaces with warnings
   * removed <data> parameter to Dict constructor, with lots of
     reshuffling behind the scenes
   * add DictNotFoundError as a subclass of Error
   * Remove de_AT from languages in the Windows version, it was
     causing errors
   * bug fixes:
        * memory leak in DictWithPWL._free()
        * incorrect cache handling for PWLs


