diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6b29c..3363b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ Entries are listed in reverse chronological order. +## 1.1.2 + +* Disabled KaTeX on `docs.rs` pending proper [support upstream](https://github.com/rust-lang/docs.rs/issues/302). + +## 1.1.1 + +* Fixed an issue related to `#[cfg(rustdoc)]` which prevented documenting multiple backends. + ## 1.1.0 * Adds support for precomputation for multiscalar multiplication. diff --git a/Cargo.toml b/Cargo.toml index 40a605f..8d33d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "1.1.1" +version = "1.1.2" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" @@ -19,7 +19,8 @@ exclude = [ build = "build.rs" [package.metadata.docs.rs] -rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] +# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302 +# rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] features = ["nightly", "simd_backend"] [badges]