mirror of
https://github.com/sigmasternchen/grimoire-ssg
synced 2025-03-15 10:08:55 +00:00
Compare commits
2 commits
adc2b98064
...
101d1f6a21
Author | SHA1 | Date | |
---|---|---|---|
101d1f6a21 | |||
c71f7df079 |
2 changed files with 31 additions and 1 deletions
23
CHANGELOG.md
Normal file
23
CHANGELOG.md
Normal file
|
@ -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
|
|
@ -3,7 +3,7 @@ name = "grimoire-ssg"
|
||||||
packages = [
|
packages = [
|
||||||
{ include = "grimoiressg" }
|
{ include = "grimoiressg" }
|
||||||
]
|
]
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
description = "A minimalistic Static Site Generator"
|
description = "A minimalistic Static Site Generator"
|
||||||
authors = ["Sigma <git@sigma-star.io>"]
|
authors = ["Sigma <git@sigma-star.io>"]
|
||||||
license = "BSD-2-Clause"
|
license = "BSD-2-Clause"
|
||||||
|
@ -16,6 +16,13 @@ jinja2 = "^3.1.5"
|
||||||
pyyaml = "^6.0.2"
|
pyyaml = "^6.0.2"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[tool.commitizen]
|
||||||
|
name = "cz_conventional_commits"
|
||||||
|
tag_format = "v$version"
|
||||||
|
version_scheme = "semver"
|
||||||
|
version_provider = "poetry"
|
||||||
|
update_changelog_on_bump = true
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
Loading…
Reference in a new issue