* Dropped Python 2.7 and Django 1.11 support
* Added support for the subqueries issue
This commit is contained in:
Andrew-Chen-Wang 2020-06-25 15:33:17 -04:00
parent a8a69e0a1a
commit 6feafb178c
2 changed files with 23 additions and 1 deletions

22
.github/workflows/publish.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Publish to PyPi
on:
release:
types:
- created
jobs:
publish-to-pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}

View file

@ -1,4 +1,4 @@
VERSION = (2, 2, 0)
VERSION = (2, 2, 2)
__version__ = '.'.join(map(str, VERSION))
default_app_config = 'cachalot.apps.CachalotConfig'