From 101d1f6a210f9fd8b38cb4ca31f7047e7da81689 Mon Sep 17 00:00:00 2001 From: sigmasternchen Date: Sun, 12 Jan 2025 20:43:55 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.1.0=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 23 +++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md 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"