Skip to content

Commit

Permalink
Prepare 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsokolov committed Jul 4, 2019
1 parent 5384999 commit 72336cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion rangefilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


__author__ = 'Dmitriy Sokolov'
__version__ = '0.4.0'
__version__ = '0.5.0'


default_app_config = 'rangefilter.apps.RangeFilterConfig'
Expand Down

0 comments on commit 72336cb

Please sign in to comment.