Skip to content

Commit

Permalink
2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Aug 30, 2022
1 parent 241a0a5 commit dc59b71
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 10 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
`unreleased`_ changes
---------------------

* #484: Avoid creating migration when using `BigAutoField` as `DEFAULT_AUTO_FIELD`

`2.4.2`_ (2022-08-30)
---------------------
* `#484`_: Added ``DEFAULT_AUTO_FIELD`` (Fix `#483`_)
* `#475`_: Add ``SET`` to blacklisted keywords

`2.4.1`_ (2022-03-10)
---------------------
Expand Down Expand Up @@ -347,7 +351,8 @@ Initial Release
.. _2.3.0: https://github.com/groveco/django-sql-explorer/compare/2.2.0...2.3.0
.. _2.4.0: https://github.com/groveco/django-sql-explorer/compare/2.3.0...2.4.0
.. _2.4.1: https://github.com/groveco/django-sql-explorer/compare/2.4.0...2.4.1
.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/4.1.0...master
.. _2.4.2: https://github.com/groveco/django-sql-explorer/compare/2.4.1...2.4.2
.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/2.4.2...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 @@ -391,6 +396,8 @@ Initial Release
.. _#450: https://github.com/groveco/django-sql-explorer/pull/450
.. _#470: https://github.com/groveco/django-sql-explorer/pull/470
.. _#471: https://github.com/groveco/django-sql-explorer/pull/471
.. _#475: https://github.com/groveco/django-sql-explorer/pull/475
.. _#484: https://github.com/groveco/django-sql-explorer/pull/484

.. _#269: https://github.com/groveco/django-sql-explorer/issues/269
.. _#288: https://github.com/groveco/django-sql-explorer/issues/288
Expand All @@ -403,5 +410,6 @@ Initial Release
.. _#433: https://github.com/groveco/django-sql-explorer/issues/433
.. _#440: https://github.com/groveco/django-sql-explorer/issues/440
.. _#443: https://github.com/groveco/django-sql-explorer/issues/443
.. _#483: https://github.com/groveco/django-sql-explorer/issues/483

.. _furo: https://github.com/pradyunsg/furo
2 changes: 1 addition & 1 deletion explorer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version_info__ = {
'major': 2,
'minor': 4,
'micro': 1,
'micro': 2,
'releaselevel': 'final',
'serial': 0
}
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def read(fname):
version=version,
author="Chris Clark",
author_email="[email protected]",
maintainer='Mark Walker',
maintainer_email='[email protected]',
description=("A pluggable app that allows users (admins) to execute SQL,"
" view, and export the results."),
license="MIT",
Expand Down

0 comments on commit dc59b71

Please sign in to comment.