Skip to content

Commit

Permalink
Release 1.7
Browse files Browse the repository at this point in the history
- 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`
  • Loading branch information
ChanTsune authored Sep 24, 2020
1 parent 49f44c7 commit 314a790
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion django_boost/__init__.py
Original file line number Diff line number Diff line change
@@ -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()
Expand Down

0 comments on commit 314a790

Please sign in to comment.