diff --git a/HISTORY.rst b/HISTORY.rst index 9835e0ec..2149245b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,6 +8,9 @@ Pending .. Insert new release notes below this line +2.2.0 (2017-12-04) +------------------ + * Add ``output_field`` argument to ``JSONExtract`` function. * Improved DB version checks for ``JSONField`` and ``DynamicField`` so you can have just one connection that supports them. diff --git a/django_mysql/__init__.py b/django_mysql/__init__.py index 09961ec1..e995a8bd 100644 --- a/django_mysql/__init__.py +++ b/django_mysql/__init__.py @@ -5,7 +5,7 @@ __author__ = 'Adam Johnson' __email__ = 'me@adamj.eu' -__version__ = '2.1.1' +__version__ = '2.2.0' default_app_config = 'django_mysql.apps.MySQLConfig'