Prepare 0.5.0

This commit is contained in:
Dmitriy Sokolov 2019-07-04 15:20:35 +03:00
parent 5384999c34
commit 72336cb571
No known key found for this signature in database
GPG Key ID: DE2C98901898AB74
3 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,12 @@
## [Unreleased]
## [0.5.0] - 2019-07-04
### Added
- Add csp compliance through django-csp (thanks @jsumnerPhD)
### Fixed
- Fix problem with locale
## [0.4.0] - 2019-04-19
### Changed
- Changed name lookup field `{field}__gte` -> `{field}__range__gte`
@ -63,7 +67,8 @@
- Add get_timezone
- Drop support Django < 1.8
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.16...v0.4.0
[0.3.16]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.15...v0.3.16
[0.3.15]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.14...v0.3.15

View File

@ -1,5 +1,6 @@
include LICENSE CHANGES README.rst
include LICENSE CHANGELOG.md README.rst
recursive-include rangefilter/static *.js *.css *.png *.eot *.svg *.ttf *.woff
recursive-include rangefilter/templates *.html
recursive-include rangefilter/locale *.mo
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

View File

@ -4,7 +4,7 @@ from __future__ import unicode_literals
__author__ = 'Dmitriy Sokolov'
__version__ = '0.4.0'
__version__ = '0.5.0'
default_app_config = 'rangefilter.apps.RangeFilterConfig'