diff --git a/CHANGELOG.md b/CHANGELOG.md index 124f749d..04e4e416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.6.5 - 2024-08-08 + +Fixes a bug where the linkchecker plugin would fail to locate documentation source on Unix OSs. + ## 0.6.3 - 2024-05-03 Lots of docs fixes and dependency updates thanks to @tshepang! diff --git a/Cargo.lock b/Cargo.lock index d8445849..38203580 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2214,7 +2214,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "oranda" -version = "0.6.3" +version = "0.6.5" dependencies = [ "ammonia", "assert_cmd", @@ -2271,7 +2271,7 @@ dependencies = [ [[package]] name = "oranda-generate-css" -version = "0.6.3" +version = "0.6.5" dependencies = [ "axoasset 0.4.0", "camino", diff --git a/Cargo.toml b/Cargo.toml index 40a3f1c7..de655d74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "oranda" description = "🎁 generate beautiful landing pages for your projects" repository = "https://github.com/axodotdev/oranda" homepage = "https://opensource.axo.dev/oranda" -version = "0.6.3" +version = "0.6.5" edition = "2021" authors = ["Axo Developer Co. "] license = "MIT OR Apache-2.0" @@ -56,7 +56,7 @@ pathdiff = { version = "0.2.1", features = ["camino"] } minijinja = { version = "1.0.3", features = ["loader", "preserve_order", "custom_syntax"] } include_dir = "0.7.3" slug = "0.1.4" -oranda-generate-css = { version = "0.6.3", path = "generate-css" } +oranda-generate-css = { version = "0.6.5", path = "generate-css" } inquire = "0.6.2" url-escape = "0.1.1" rss = { version = "2.0.6", features = ["atom"] } diff --git a/generate-css/Cargo.toml b/generate-css/Cargo.toml index 54453acd..9a7c4639 100644 --- a/generate-css/Cargo.toml +++ b/generate-css/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oranda-generate-css" -version = "0.6.3" +version = "0.6.5" description = "the part of oranda that generates CSS" repository = "https://github.com/axodotdev/oranda" homepage = "https://opensource.axo.dev/oranda"