Update changelog to keep-a-changelog

This commit is contained in:
Dmitriy Sokolov 2019-06-21 13:59:38 +03:00
parent 44e399ad27
commit 24babafa85
No known key found for this signature in database
GPG Key ID: DE2C98901898AB74
2 changed files with 77 additions and 63 deletions

77
CHANGELOG.md Normal file
View File

@ -0,0 +1,77 @@
## [Unreleased]
## [0.4.0] - 2019-04-19
### Changed
- Changed name lookup field `{field}__gte` -> `{field}__range__gte`
- Changed name lookup field `{field}__lte` -> `{field}__range__lte`
## [0.3.16] - 2019-04-14
### Changed
- Fix problem when thousand separator is used (#18)
## [0.3.15] - 2019-04-05
### Added
- Added Spanish translation
- Compatibility Django 2.2
## [0.3.14] - 2019-03-25
### Added
- Added French translation
- Added German translation
## [0.3.13] - 2019-03-21
### Added
- Added Czech translation
## [0.3.12] - 2019-01-31
### Added
- Added Russian translation
## [0.3.11] - 2019-01-30
### Changed
- Avoid loading admin_static in templates under Django>=1.10 (#27)
## [0.3.10] - 2018-12-05
### Changed
- Fix calendar position on mobile (#23)
## [0.3.9] - 2018-10-31
### Changed
- Fix calendar icons displayed for Django 2.1
## [0.3.8] - 2018-10-12
### Added
- Compatibility Django 2.1
## [0.3.7] - 2018-06-29
### Changed
- Fix system name with non-unicode char (#18)
## [0.3.6] - 2018-04-27
### Changed
- Change padding on the buttons (#16)
## [0.3.5] - 2018-03-17
### Added
- Compatibility Django 2.0
## [0.3.4] - 2018-03-17
### Changed
- Add get_timezone
- Drop support Django < 1.8
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.4.0...HEAD
[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
[0.3.14]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.13...v0.3.14
[0.3.13]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.12...v0.3.13
[0.3.12]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.11...v0.3.12
[0.3.11]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.10...v0.3.11
[0.3.10]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.9...v0.3.10
[0.3.9]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.8...v0.3.9
[0.3.8]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.7...v0.3.8
[0.3.7]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.6...v0.3.7
[0.3.6]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.5...v0.3.6
[0.3.5]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.4...v0.3.5
[0.3.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.3.3...v0.3.4

63
CHANGES
View File

@ -1,63 +0,0 @@
0.4.0 (2019-04-19)
- Changed name lookup field `{field}__gte` -> `{field}__range__gte`
0.3.16 (2019-04-14)
- Fix problem when thousand separator is used (#18)
0.3.15 (2019-04-05)
- Added Spanish translation
- Compatibility Django 2.2
0.3.14 (2019-03-25)
- Added French translation
- Added German translation
0.3.13 (2019-03-21)
- Added Czech translation
0.3.12 (2019-01-31)
- Added Russian translation
0.3.11 (2019-01-30)
- Avoid loading admin_static in templates under Django>=1.10 (#27)
0.3.10 (2018-12-05)
- Fix calendar position on mobile (#23)
0.3.9 (2018-10-31)
- Fix calendar icons displayed for Django 2.1
0.3.8 (2018-10-12)
- Compatibility Django 2.1
0.3.7 (2018-06-29)
- Fix system name with non-unicode char (#18)
0.3.6 (2018-04-27)
- Change padding on the buttons (#16)
0.3.2 (2018-03-17)
- Compatibility Django 2.0
0.3.0 (2016-04-12)
- Add get_timezone
- Drop support Django < 1.8
0.2.1 (2016-12-31)
- Fix #5
0.2.0 (2016-12-28)
- Add DateTime filter
0.1.3 (2016-07-29)
- Django 1.10 support
- Fix "__lte" max date
0.1.2 (2016-07-28)
- Fix filter with only one params
0.1.1 (2016-06-24)
- Fix name template
0.1.0 (2016-06-24)
- Initial release