Update deps
This commit is contained in:
parent
ff9622f132
commit
f60bda42f0
@ -2,13 +2,15 @@
|
|||||||
|
|
||||||
## 0.19.0 (unreleased)
|
## 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
|
- Add bottom footnotes with backreference option
|
||||||
- Fix link check report inconsistency
|
- Fix link check report inconsistency
|
||||||
- Fix resizing for images with EXIF orientation
|
- Fix resizing for images with EXIF orientation
|
||||||
- Add MIME type to get_image_metadata
|
- Add MIME type to get_image_metadata
|
||||||
- Fix hot loading for config.toml in some cases
|
- Fix hot loading for config.toml in some cases
|
||||||
- Add `render = false` capability to pages
|
- 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)
|
## 0.18.0 (2023-12-18)
|
||||||
|
|
||||||
|
591
Cargo.lock
generated
591
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -21,7 +21,7 @@ stages:
|
|||||||
rustup_toolchain: stable
|
rustup_toolchain: stable
|
||||||
linux-pinned:
|
linux-pinned:
|
||||||
imageName: 'ubuntu-20.04'
|
imageName: 'ubuntu-20.04'
|
||||||
rustup_toolchain: 1.74.0
|
rustup_toolchain: 1.79.0
|
||||||
pool:
|
pool:
|
||||||
vmImage: $(imageName)
|
vmImage: $(imageName)
|
||||||
steps:
|
steps:
|
||||||
|
@ -129,7 +129,6 @@ impl PageFrontMatter {
|
|||||||
/// Converts the TOML datetime to a time::OffsetDateTime
|
/// Converts the TOML datetime to a time::OffsetDateTime
|
||||||
/// Also grabs the year/month/day tuple that will be used in serialization
|
/// Also grabs the year/month/day tuple that will be used in serialization
|
||||||
pub fn date_to_datetime(&mut self) {
|
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 = 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()));
|
self.datetime_tuple = self.datetime.map(|dt| (dt.year(), dt.month().into(), dt.day()));
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ nom-bibtex = "0.5"
|
|||||||
num-format = "0.4"
|
num-format = "0.4"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
percent-encoding = "2"
|
percent-encoding = "2"
|
||||||
pulldown-cmark = { version = "0.10", default-features = false, features = ["html", "simd"] }
|
pulldown-cmark = { version = "0.11", default-features = false, features = ["html", "simd"] }
|
||||||
pulldown-cmark-escape = { version = "0.10", default-features = false }
|
pulldown-cmark-escape = { version = "0.11", default-features = false }
|
||||||
quickxml_to_serde = "0.6"
|
quickxml_to_serde = "0.6"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: zola
|
name: zola
|
||||||
version: 0.18.0
|
version: 0.19.0
|
||||||
summary: A fast static site generator in a single binary with everything built-in.
|
summary: A fast static site generator in a single binary with everything built-in.
|
||||||
description: |
|
description: |
|
||||||
A fast static site generator in a single binary with everything built-in.
|
A fast static site generator in a single binary with everything built-in.
|
||||||
@ -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.18.0
|
source-tag: v0.19.0
|
||||||
plugin: rust
|
plugin: rust
|
||||||
rust-channel: stable
|
rust-channel: stable
|
||||||
build-packages:
|
build-packages:
|
||||||
|
Loading…
Reference in New Issue
Block a user