Skip to content

Commit

Permalink
chore: Release 3.1.1 (#529)
Browse files Browse the repository at this point in the history
* ci: Add makemigrations check to pre-commit

* build: Bump to 3.1.1

* chore: Update ref to PR
  • Loading branch information
marksweb committed Feb 27, 2023
1 parent 387cdbb commit b5fffea
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Expand Up @@ -12,3 +12,9 @@ indent_size = 4

[*.py]
max_line_length = 120

[*.yaml]
indent_size = 2

[*.yml]
indent_size = 2
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Expand Up @@ -40,3 +40,10 @@ repos:
rev: 5.12.0
hooks:
- id: isort

- repo: https://github.com/remastr/pre-commit-django-check-migrations
rev: v0.1.0
hooks:
- id: check-migrations-created
args: [--manage-path=manage.py]
additional_dependencies: [django==4.1]
14 changes: 9 additions & 5 deletions HISTORY.rst
Expand Up @@ -9,9 +9,13 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
---------------------


`3.1.0`_ (2023-02-25)
`3.1.1`_ (2023-02-27)
---------------------
* `#529`_: Added ``makemigrations --check`` pre-commit hook
* `#528`_: Add missing migration

`3.1.0`_ (2023-02-25)
---------------------
* `#520`_: Favorite queries
* `#519`_: Add labels to params like ``$$paramName|label:defaultValue$$``
* `#517`_: Pivot export
Expand All @@ -21,8 +25,6 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
* `#522`_: ci: coverage update
* `#521`_: ci: Adding django 4.2 to the test suite



`3.0.1`_ (2022-12-16)
---------------------
* `#515`_: Fix for running without optional packages
Expand Down Expand Up @@ -396,7 +398,8 @@ Initial Release
.. _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
.. _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
.. _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

.. _#254: https://github.com/groveco/django-sql-explorer/pull/254
.. _#334: https://github.com/groveco/django-sql-explorer/pull/334
Expand Down Expand Up @@ -463,6 +466,8 @@ Initial Release
.. _#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
.. _#528: https://github.com/groveco/django-sql-explorer/pull/528
.. _#529: https://github.com/groveco/django-sql-explorer/pull/529

.. _#269: https://github.com/groveco/django-sql-explorer/issues/269
.. _#288: https://github.com/groveco/django-sql-explorer/issues/288
Expand All @@ -480,5 +485,4 @@ Initial Release
.. _#490: https://github.com/groveco/django-sql-explorer/issues/490
.. _#492: https://github.com/groveco/django-sql-explorer/issues/492


.. _furo: https://github.com/pradyunsg/furo
2 changes: 1 addition & 1 deletion explorer/__init__.py
@@ -1,7 +1,7 @@
__version_info__ = {
'major': 3,
'minor': 1,
'patch': 0,
'patch': 1,
'releaselevel': 'final',
'serial': 0
}
Expand Down

0 comments on commit b5fffea

Please sign in to comment.