What's Changed
Switched a lot of the workflows to more modern tooling, including `uv`, `nox`, and `just`.
Started the work to support date-based permalinks. In this release, post permalinks can be set with `POST_PERMALINK`. However, the slug field is still unique and that is the key to retrieving content from the database. So although the dates in the URL are used to parse the URL. The content is only retrieved from the database based on the slug. For example, the following two URLs will both retrieve the same post, assuming there's a post with a slug `test-post`:
- /post/2024/01/01/test-post
- /post/2024/09/24/test-post
In the next release, this will be fixed.
Pull Requests:
* Dev by stuartmaxwell in https://github.com/stuartmaxwell/djpress/pull/19
* Dev updates by stuartmaxwell in https://github.com/stuartmaxwell/djpress/pull/20
Full Changelog:
* https://github.com/stuartmaxwell/djpress/compare/v0.8.0...v0.8.1