Skip to content

Commit b97f8a1

Browse files
committed
Update changelog + add back config.generate_feed in templates for now
1 parent 9774d76 commit b97f8a1

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

3-
## 0.19.1 (unreleased)
3+
## 0.19.1 (2024-06-24)
44

5-
- Fix `config.generate_feeds` being still serialized as `config.generate_feed`
5+
- Fix `config.generate_feeds` being still serialized as `config.generate_feed`. Both are available for now
6+
- Fix `zola serve` not reacting to changes on some OSes
67

78
## 0.19.0 (2024-06-20)
89

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zola"
3-
version = "0.19.0"
3+
version = "0.19.1"
44
authors = ["Vincent Prouillet <[email protected]>"]
55
edition = "2021"
66
license = "MIT"

components/config/src/config/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ pub struct SerializedConfig<'a> {
108108
description: &'a Option<String>,
109109
languages: HashMap<&'a String, &'a languages::LanguageOptions>,
110110
default_language: &'a str,
111+
generate_feed: bool,
111112
generate_feeds: bool,
112113
feed_filenames: &'a [String],
113114
taxonomies: &'a [taxonomies::TaxonomyConfig],
@@ -322,6 +323,7 @@ impl Config {
322323
description: &options.description,
323324
languages: self.languages.iter().filter(|(k, _)| k.as_str() != lang).collect(),
324325
default_language: &self.default_language,
326+
generate_feed: options.generate_feeds,
325327
generate_feeds: options.generate_feeds,
326328
feed_filenames: &options.feed_filenames,
327329
taxonomies: &options.taxonomies,
Loading
Loading

snapcraft.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: zola
2-
version: 0.19.0
2+
version: 0.19.1
33
summary: A fast static site generator in a single binary with everything built-in.
44
description: |
55
A fast static site generator in a single binary with everything built-in.
@@ -21,7 +21,7 @@ parts:
2121
zola:
2222
source-type: git
2323
source: https://github.com/getzola/zola.git
24-
source-tag: v0.19.0
24+
source-tag: v0.19.1
2525
plugin: rust
2626
rust-channel: stable
2727
build-packages:

0 commit comments

Comments
 (0)