diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d1e89..5e9384b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Add array arguments to shortcodes and allow single-quote/backtick strings - Co-located assets are now permalinks - Words are now counted using unicode rather than whitespaces +- Aliases can now be pointing directly to specific HTML files ## 0.3.4 (2018-06-22) diff --git a/components/utils/src/lib.rs b/components/utils/src/lib.rs index a1fdb17..9d8e9c1 100644 --- a/components/utils/src/lib.rs +++ b/components/utils/src/lib.rs @@ -5,6 +5,7 @@ extern crate errors; extern crate tempfile; extern crate tera; extern crate walkdir; +extern crate unicode_segmentation; pub mod fs; pub mod site;