release: krile 0.5.7

This commit is contained in:
liv 2023-03-19 17:30:32 +01:00
parent fb8a22e0a6
commit 6fa1f0de2b
4 changed files with 16 additions and 9 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## [0.5.7] - 2023-03-19
### Changed
- Upgraded shtola to `0.4.3`.
- Dynamically read package version from Cargo env variable.
## [0.5.6] - 2021-11-10
### Changed

View file

@ -1,13 +1,13 @@
[package]
name = "krile"
description = "A static site generator"
version = "0.5.6"
version = "0.5.7"
license = "AGPL-3.0-or-later"
edition = "2021"
repository = "https://codeberg.org/shadows_withal/shtola/src/branch/main/krile"
readme = "README.md"
[dependencies]
shtola = { version = "0.4.2", features = ["full"] }
shtola = { version = "0.4.3", features = ["full"] }
argh = "~0.1"
minifemme = "~1.0"

View file

@ -6,7 +6,7 @@ use shtola::log::*;
use shtola::plugins;
use shtola::Shtola;
const VERSION: &'static str = "0.5.6";
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
#[derive(FromArgs)]
/// A static site generator.