mirror of
https://github.com/getzola/zola
synced 2024-11-10 06:14:19 +00:00
Get ready for release
This commit is contained in:
parent
59d70749af
commit
1aa21e0d95
4 changed files with 8 additions and 4 deletions
|
@ -1,11 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.20.0 (unreleased)
|
## 0.19.2 (2024-08-15)
|
||||||
|
|
||||||
- Fix some of YAML date parsing
|
- Fix some of YAML date parsing
|
||||||
- Fix feed generation for languages not working in some cases (it was taking the value from the root of the config for
|
- Fix feed generation for languages not working in some cases (it was taking the value from the root of the config for
|
||||||
feed_filenames)
|
feed_filenames)
|
||||||
- Ignore `.bck` files in `zola serve`
|
- Ignore `.bck` files in `zola serve`
|
||||||
|
- Fix change monitoring on Windows
|
||||||
|
- Allow disabling sitemap.xml and robots.txt generation
|
||||||
|
- Fix shortcodes in inline HTML
|
||||||
|
- Ignore code blocks in word count
|
||||||
|
|
||||||
## 0.19.1 (2024-06-24)
|
## 0.19.1 (2024-06-24)
|
||||||
|
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -5248,7 +5248,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zola"
|
name = "zola"
|
||||||
version = "0.19.1"
|
version = "0.19.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 4.5.7",
|
"clap 4.5.7",
|
||||||
"clap_complete",
|
"clap_complete",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zola"
|
name = "zola"
|
||||||
version = "0.19.1"
|
version = "0.19.2"
|
||||||
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
|
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -21,7 +21,7 @@ parts:
|
||||||
zola:
|
zola:
|
||||||
source-type: git
|
source-type: git
|
||||||
source: https://github.com/getzola/zola.git
|
source: https://github.com/getzola/zola.git
|
||||||
source-tag: v0.19.1
|
source-tag: v0.19.2
|
||||||
plugin: rust
|
plugin: rust
|
||||||
rust-channel: stable
|
rust-channel: stable
|
||||||
build-packages:
|
build-packages:
|
||||||
|
|
Loading…
Reference in a new issue