diff --git a/HISTORY.rst b/HISTORY.rst index 644d5517..d6f912a6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,11 @@ This project adheres to `Semantic Versioning `_. --------------------- +`3.2.1`_ (2023-07-13) +--------------------- +* `#539`_: Test for SET PASSWORD +* `#544`_: Fix `User` primary key reference + `3.2.0`_ (2023-05-17) --------------------- * `#533`_: CSRF token httponly support + s3 destination for async results @@ -474,6 +479,8 @@ Initial Release .. _#528: https://github.com/groveco/django-sql-explorer/pull/528 .. _#529: https://github.com/groveco/django-sql-explorer/pull/529 .. _#533: https://github.com/groveco/django-sql-explorer/pull/533 +.. _#539: https://github.com/groveco/django-sql-explorer/pull/539 +.. _#544: https://github.com/groveco/django-sql-explorer/pull/544 .. _#269: https://github.com/groveco/django-sql-explorer/issues/269 .. _#288: https://github.com/groveco/django-sql-explorer/issues/288 diff --git a/explorer/__init__.py b/explorer/__init__.py index a5877492..91546919 100644 --- a/explorer/__init__.py +++ b/explorer/__init__.py @@ -1,7 +1,7 @@ __version_info__ = { 'major': 3, 'minor': 2, - 'patch': 0, + 'patch': 1, 'releaselevel': 'final', 'serial': 0 }