diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11f6b1e..921c3af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,12 +29,12 @@ jobs: if: ${{ steps.create_release.outputs.created == 'true' }} run: | python -m pip install --upgrade pip - pip install setuptools twine + pip install setuptools twine wheel - name: Build and publish if: ${{ steps.create_release.outputs.created == 'true' }} env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python setup.py sdist + python setup.py sdist bdist_wheel twine upload dist/* diff --git a/HISTORY.md b/HISTORY.md index cae140f..118282c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,15 @@ ## Versions +### 1.7 + +- Add + - `revive` method to `django_boost.models.mixins.LogicalDeletionMixin` + - `is_dead` method to `django_boost.models.mixins.LogicalDeletionMixin` + - `is_alive` method to `django_boost.models.mixins.LogicalDeletionMixin` +- Fix + - `django_boost.utils.attribute.getattr_chain` + ### 1.6.2 - Update diff --git a/django_boost/__init__.py b/django_boost/__init__.py index f377200..298cf32 100644 --- a/django_boost/__init__.py +++ b/django_boost/__init__.py @@ -1,6 +1,6 @@ from django_boost.utils.version import get_version -VERSION = (1, 6, 3, 'alpha', 0) +VERSION = (1, 7, 0, 'final', 0) __version__ = get_version()