Skip to content

Commit

Permalink
2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Mar 10, 2022
1 parent 02677ba commit 8caee34
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
`unreleased`_ changes
---------------------

`2.4.1`_ (2022-03-10)
---------------------
* `#471`_: Fix extra white space in description and SQL fields.

`2.4.0`_ (2022-02-10)
---------------------
* `#470`_: Upgrade JS/CSS versions.
Expand Down Expand Up @@ -382,6 +386,7 @@ Initial Release
.. _#449: https://github.com/groveco/django-sql-explorer/pull/449
.. _#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

.. _#269: https://github.com/groveco/django-sql-explorer/issues/269
.. _#288: https://github.com/groveco/django-sql-explorer/issues/288
Expand Down
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': 0,
'micro': 1,
'releaselevel': 'final',
'serial': 0
}
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import sys
from pathlib import Path

from setuptools import setup
try:
Expand Down Expand Up @@ -38,6 +39,8 @@ def read(fname):
os.system("git push --tags")
sys.exit()

this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()

setup(
name=name,
Expand All @@ -55,7 +58,8 @@ def read(fname):
'Issues': 'https://github.com/groveco/django-sql-explorer/issues'
},
packages=['explorer'],
long_description=read('README.rst'),
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 8caee34

Please sign in to comment.