diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..28aacc3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +## v1.0.0 (2025-01-12) + +### Feat + +- Switch to Python logging +- Allow loading of external modules + +### Fix + +- Change utils import to named import + +### Refactor + +- Extract individual features into toggleable modules + +## v0.1.0 (2025-01-06) + +### Fix + +- Add packages section to pyproject +- Reduce minimum python version +- Rename package +- pyproject license string diff --git a/pyproject.toml b/pyproject.toml index 9113cf7..8c182ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "grimoire-ssg" packages = [ { include = "grimoiressg" } ] -version = "0.1.0" +version = "1.0.0" description = "A minimalistic Static Site Generator" authors = ["Sigma "] license = "BSD-2-Clause"