|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [3.0.0] - 2023-01-03 |
| 8 | +### Added |
| 9 | +- Support for Django 4.0+ |
| 10 | + |
| 11 | +### Removed |
| 12 | +- Support for Django versions less than 2.2 |
| 13 | +- Support for Python versions less than 3.7 |
| 14 | + |
| 15 | +## [2.0.2] - 2021-02-14 |
| 16 | +### Fixed |
| 17 | +- Store source content as a string rather than a bytes object |
| 18 | + |
| 19 | +## [2.0.1] - 2020-08-25 |
| 20 | +### Fixed |
| 21 | +- Render HTML links in the Django admin by using `format_html` instead of the now-deprecated `allow_tags` attribute |
| 22 | + |
| 23 | +## [2.0.0] - 2020-08-20 |
| 24 | +### Removed |
| 25 | +- Support for Python 3.5 |
| 26 | + |
| 27 | +### Added |
| 28 | +- Compatibility in the `include_webmention_information` decorator for versions of Django with new-style middleware |
| 29 | + |
| 30 | +## [1.1.0] - 2019-07-22 |
| 31 | +### Changed |
| 32 | +- Use static `setup.cfg` for package metadata and tooling configuration |
| 33 | +- Use black code style |
| 34 | +- Lint with pyflakes |
| 35 | + |
| 36 | +## [1.0.1] - 2018-04-12 |
| 37 | +### Fixed |
| 38 | +- Made `setup.py` aware that the README content type is, in fact, markdown |
| 39 | + |
| 40 | +## [1.0.0] - 2018-04-12 |
| 41 | +### Added |
| 42 | +- Better documentation about testing |
| 43 | +- Coverage configuration |
| 44 | + |
| 45 | +### Changed |
| 46 | +- Use markdown for PyPI README |
| 47 | + |
| 48 | +## [0.1.0] - 2018-01-02 |
| 49 | +### Added |
| 50 | +- Mention use of `path()` over `url()` in README |
| 51 | +- Mention use of new-style `MIDDLEWARE` over old-style `MIDDLEWARE_CLASSES` in README |
| 52 | +- Add system check to detect presence of incorrect middleware configuration |
| 53 | +- Update imports and other syntax for forward compatibility with Django 1.10+ and Django 2.0+ |
| 54 | + |
| 55 | +## [0.0.4] - 2016-07-15 |
| 56 | +### Changed |
| 57 | +- Reworked the unit tests to be runnable under Travis CI to support continuous integration |
| 58 | + |
| 59 | +## [0.0.3] - 2016-01-22 |
| 60 | +### Changed |
| 61 | +- Successful POST requests will now receive a 202 Accepted response rather than a 200 OK response |
| 62 | + |
| 63 | +### Added |
| 64 | +- Django 1.9 in frameworks listed in setup.py |
| 65 | + |
| 66 | +### Fixed |
| 67 | +- Errors in documentation |
| 68 | + |
| 69 | +## [0.0.2] - 2015-07-11 |
| 70 | +### Added |
| 71 | +- Webmentions are now available for review in the admin console |
| 72 | +- Webmentions are now updated or invalidated when a new webmention notification request is sent |
| 73 | +- Thorough unit testing |
| 74 | + |
| 75 | +## [0.0.1] - 2015-07-10 |
| 76 | +### Added |
| 77 | +- Pre-alpha initial release |
0 commit comments