Skip to content

Commit

Permalink
Release 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed May 17, 2023
1 parent a2bca64 commit f94801b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 7 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
---------------------


`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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/
4 changes: 2 additions & 2 deletions explorer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version_info__ = {
'major': 3,
'minor': 1,
'patch': 1,
'minor': 2,
'patch': 0,
'releaselevel': 'final',
'serial': 0
}
Expand Down

0 comments on commit f94801b

Please sign in to comment.