diff --git a/HISTORY.rst b/HISTORY.rst index 06cf188..14d3b51 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,16 @@ History ------- +2.3.0 (2015-08-02) + +* Created a customized string-to-tag parser to match Selectize.js functionality +* No longer delimits tags based on spaces +* Added support for custom delimiter in settings +* WHEN UPGRADING: This should be backwards-compatible for existing behavior, but to fix a subtle Selectize bug with + single tags with spaces, and to support custom DELIMITERs, please configure TAGGIT_TAGS_FROM_STRING and + TAGGIT_STRING_FROM_TAGS as described in the README. + 0.1.0 (2014-01-01) ++++++++++++++++++ -* First release on PyPI. \ No newline at end of file +* First release on PyPI. diff --git a/taggit_selectize/__init__.py b/taggit_selectize/__init__.py index 04188a1..8219039 100644 --- a/taggit_selectize/__init__.py +++ b/taggit_selectize/__init__.py @@ -1 +1 @@ -__version__ = '2.2.0' +__version__ = '2.3.0'