Update deps

This commit is contained in:
Vincent Prouillet 2024-06-17 14:12:08 +02:00 committed by Vincent Prouillet
parent ff9622f132
commit f60bda42f0
6 changed files with 370 additions and 236 deletions

View file

@ -2,13 +2,15 @@
## 0.19.0 (unreleased)
- Updates the pulldown-cmark dependency to v0.10.0. This improves footnote handling, and may also introduce some minor behavior changes such as reducing the amount of unnecessary HTML-escaping of text content.
- Updates the pulldown-cmark dependency to v0.11.0. This improves footnote handling, and may also introduce some minor behavior changes such as reducing the amount of unnecessary HTML-escaping of text content.
- Add bottom footnotes with backreference option
- Fix link check report inconsistency
- Fix resizing for images with EXIF orientation
- Add MIME type to get_image_metadata
- Fix hot loading for config.toml in some cases
- Add `render = false` capability to pages
- Handle string dates in YAML front-matter
- Add support for fuse.js search format
## 0.18.0 (2023-12-18)

591
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -21,7 +21,7 @@ stages:
rustup_toolchain: stable
linux-pinned:
imageName: 'ubuntu-20.04'
rustup_toolchain: 1.74.0
rustup_toolchain: 1.79.0
pool:
vmImage: $(imageName)
steps:

View file

@ -129,7 +129,6 @@ impl PageFrontMatter {
/// Converts the TOML datetime to a time::OffsetDateTime
/// Also grabs the year/month/day tuple that will be used in serialization
pub fn date_to_datetime(&mut self) {
println!("{:?}", self.date);
self.datetime = self.date.as_ref().map(|s| s.as_ref()).and_then(parse_datetime);
self.datetime_tuple = self.datetime.map(|dt| (dt.year(), dt.month().into(), dt.day()));

View file

@ -21,8 +21,8 @@ nom-bibtex = "0.5"
num-format = "0.4"
once_cell = "1"
percent-encoding = "2"
pulldown-cmark = { version = "0.10", default-features = false, features = ["html", "simd"] }
pulldown-cmark-escape = { version = "0.10", default-features = false }
pulldown-cmark = { version = "0.11", default-features = false, features = ["html", "simd"] }
pulldown-cmark-escape = { version = "0.11", default-features = false }
quickxml_to_serde = "0.6"
rayon = "1"
regex = "1"

View file

@ -1,5 +1,5 @@
name: zola
version: 0.18.0
version: 0.19.0
summary: A fast static site generator in a single binary with everything built-in.
description: |
A fast static site generator in a single binary with everything built-in.
@ -21,7 +21,7 @@ parts:
zola:
source-type: git
source: https://github.com/getzola/zola.git
source-tag: v0.18.0
source-tag: v0.19.0
plugin: rust
rust-channel: stable
build-packages: