Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-06-21 | 1.1 kB | |
v0.25.0 source code.tar.gz | 2025-06-21 | 37.9 kB | |
v0.25.0 source code.zip | 2025-06-21 | 63.5 kB | |
Totals: 3 Items | 102.4 kB | 3 |
0.25.0 (2025-06-21)
⚠ BREAKING CHANGES
- extensions: Extensions no longer implement a
run/1
callback. They can implement a callback named after the build phase:pre_build/1
,pre_render/1
, etc - This switches to using the slugify package for creating slugs. This leads to better slugs, but also means your existing page's permalinks might change, which might break backlinks. When upgrading, please check for permalink changes so that you can set up the proper redirects. You can easily do this by building your site before the update, running
find _site/ | sort > before.txt
, then updating, deleting and rebuilding your site, then runfind _site/ | sort > after.txt
and then comparing the files to look for differences.