Skip to content

Commit

Permalink
build: 3.1 release prep (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb authored Feb 25, 2023
1 parent fb6f1f5 commit 70e3241
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
django-version: ['3.2', '4.0', '4.1', '4.2a1']
django-version: ['3.2', '4.0', '4.1', '4.2b1']
os: [
ubuntu-20.04,
]
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
django-version: ['3.2', '4.0', '4.1', '4.2a1']
django-version: ['3.2', '4.0', '4.1', '4.2b1']
os: [
ubuntu-20.04,
]
Expand Down
22 changes: 21 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,20 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
`unreleased`_ changes
---------------------


`3.1.0`_ (2023-02-25)
---------------------

* `#520`_: Favorite queries
* `#519`_: Add labels to params like ``$$paramName|label:defaultValue$$``
* `#517`_: Pivot export

* `#524`_: ci: pre-commit autoupdate
* `#523`_: ci: ran pre-commit on all files for ci bot integration
* `#522`_: ci: coverage update
* `#521`_: ci: Adding django 4.2 to the test suite



`3.0.1`_ (2022-12-16)
---------------------
Expand Down Expand Up @@ -382,7 +395,8 @@ Initial Release
.. _2.5.0: https://github.com/groveco/django-sql-explorer/compare/2.4.2...2.5.0
.. _3.0: https://github.com/groveco/django-sql-explorer/compare/2.5.0...3.0
.. _3.0.1: https://github.com/groveco/django-sql-explorer/compare/3.0...3.0.1
.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/2.4.2...master
.. _3.1.0: https://github.com/groveco/django-sql-explorer/compare/3.0.1...3.1.0
.. _unreleased: https://github.com/groveco/django-sql-explorer/compare/3.1.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 @@ -442,7 +456,13 @@ Initial Release
.. _#506: https://github.com/groveco/django-sql-explorer/pull/506
.. _#508: https://github.com/groveco/django-sql-explorer/pull/508
.. _#515: https://github.com/groveco/django-sql-explorer/pull/515
.. _#517: https://github.com/groveco/django-sql-explorer/pull/517
.. _#519: https://github.com/groveco/django-sql-explorer/pull/519
.. _#520: https://github.com/groveco/django-sql-explorer/pull/520
.. _#521: https://github.com/groveco/django-sql-explorer/pull/521
.. _#522: https://github.com/groveco/django-sql-explorer/pull/522
.. _#523: https://github.com/groveco/django-sql-explorer/pull/523
.. _#524: https://github.com/groveco/django-sql-explorer/pull/524

.. _#269: https://github.com/groveco/django-sql-explorer/issues/269
.. _#288: https://github.com/groveco/django-sql-explorer/issues/288
Expand Down
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': 0,
'patch': 1,
'minor': 1,
'patch': 0,
'releaselevel': 'final',
'serial': 0
}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ def read(fname):
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2a1,<4.3
dj42: Django>=4.2b1,<4.3
djmain: https://github.com/django/django/archive/main.tar.gz
commands =
{envpython} --version
Expand Down

0 comments on commit 70e3241

Please sign in to comment.