release: krile 0.5.7
This commit is contained in:
parent
fb8a22e0a6
commit
6fa1f0de2b
4 changed files with 16 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue