diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7e29a5b..886f90d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,8 @@ jobs: requirements-file: [ django-2.2.txt, django-3.0.txt, - django-3.1.txt + django-3.1.txt, + django-3.2.txt ] os: [ ubuntu-20.04, diff --git a/HISTORY.rst b/HISTORY.rst index d801e6d9..6a45a0cc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,10 @@ Change Log This document records all notable changes to `django-sql-explorer `_. This project adheres to `Semantic Versioning `_. +`2.1.3`_ (2021-05-14) +--------------------- +* `#442`_: ``GET`` params passed to the fullscreen view (Fix `#433`_) + `2.1.2`_ (2021-01-19) --------------------- * `#431`_: Fix for hidden SQL panel on a new query @@ -348,6 +352,7 @@ Initial Release .. _#420: https://github.com/groveco/django-sql-explorer/pull/420 .. _#424: https://github.com/groveco/django-sql-explorer/pull/424 .. _#425: https://github.com/groveco/django-sql-explorer/pull/425 +.. _#442: https://github.com/groveco/django-sql-explorer/pull/442 .. _#269: https://github.com/groveco/django-sql-explorer/issues/269 .. _#288: https://github.com/groveco/django-sql-explorer/issues/288 @@ -355,4 +360,5 @@ Initial Release .. _#371: https://github.com/groveco/django-sql-explorer/issues/371 .. _#396: https://github.com/groveco/django-sql-explorer/issues/396 .. _#412: https://github.com/groveco/django-sql-explorer/issues/412 -.. _#431: https://github.com/groveco/django-sql-explorer/issues/431 \ No newline at end of file +.. _#431: https://github.com/groveco/django-sql-explorer/issues/431 +.. _#433: https://github.com/groveco/django-sql-explorer/issues/433 \ No newline at end of file diff --git a/setup.py b/setup.py index 630ce878..c3a2f764 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,11 @@ def read(fname): license="MIT", keywords="django sql explorer reports reporting csv database query", url="https://github.com/groveco/django-sql-explorer", + project_urls={ + 'Changes': 'https://django-sql-explorer.readthedocs.io/en/latest/history.html', + 'Documentation': 'https://django-sql-explorer.readthedocs.io/en/latest/', + 'Issues': 'https://github.com/groveco/django-sql-explorer/issues' + }, packages=['explorer'], long_description=read('README.rst'), classifiers=[ @@ -59,6 +64,7 @@ def read(fname): 'Framework :: Django :: 2.2', 'Framework :: Django :: 3.0', 'Framework :: Django :: 3.1', + 'Framework :: Django :: 3.2', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',