diff --git a/HISTORY.rst b/HISTORY.rst index 0998877b..644d5517 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,10 @@ This project adheres to `Semantic Versioning `_. --------------------- +`3.2.0`_ (2023-05-17) +--------------------- +* `#533`_: CSRF token httponly support + s3 destination for async results + `3.1.1`_ (2023-02-27) --------------------- * `#529`_: Added ``makemigrations --check`` pre-commit hook @@ -399,7 +403,8 @@ Initial Release .. _3.0.1: https://github.com/groveco/django-sql-explorer/compare/3.0...3.0.1 .. _3.1.0: https://github.com/groveco/django-sql-explorer/compare/3.0.1...3.1.0 .. _3.1.1: https://github.com/groveco/django-sql-explorer/compare/3.1.0...3.1.1 -.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/3.1.1...master +.. _3.2.0: https://github.com/groveco/django-sql-explorer/compare/3.1.1...3.2.0 +.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/3.2.0...master .. _#254: https://github.com/groveco/django-sql-explorer/pull/254 .. _#334: https://github.com/groveco/django-sql-explorer/pull/334 @@ -468,6 +473,7 @@ Initial Release .. _#524: https://github.com/groveco/django-sql-explorer/pull/524 .. _#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 .. _#269: https://github.com/groveco/django-sql-explorer/issues/269 .. _#288: https://github.com/groveco/django-sql-explorer/issues/288 diff --git a/README.rst b/README.rst index 1a46631b..c675aabe 100644 --- a/README.rst +++ b/README.rst @@ -2,10 +2,6 @@ :target: https://django-sql-explorer.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status -.. image:: https://travis-ci.org/groveco/django-sql-explorer.svg?branch=master - :target: https://travis-ci.org/groveco/django-sql-explorer - :alt: Build Status - .. image:: http://img.shields.io/pypi/v/django-sql-explorer.svg?style=flat-square :target: https://pypi.python.org/pypi/django-sql-explorer/ :alt: Latest Version @@ -74,6 +70,5 @@ Alternatives * `django-sql-dashboard`_: provides an authenticated interface for executing read-only SQL queries directly against your PostgreSQL database, bringing a useful subset of `Datasette`_ to Django. - .. _django-sql-dashboard: https://github.com/simonw/django-sql-dashboard .. _Datasette : https://datasette.io/ diff --git a/explorer/__init__.py b/explorer/__init__.py index deeddd3b..a5877492 100644 --- a/explorer/__init__.py +++ b/explorer/__init__.py @@ -1,7 +1,7 @@ __version_info__ = { 'major': 3, - 'minor': 1, - 'patch': 1, + 'minor': 2, + 'patch': 0, 'releaselevel': 'final', 'serial': 0 }