diff --git a/Cargo.toml b/Cargo.toml index 56f58e9..9b7d76d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lav" -version = "0.7.1" +version = "0.7.2" edition = "2021" authors = ["Rouven Spreckels "] description = "Lane-Associated Vector (LAV): Portable SIMD vector trait as GAT of SIMD lane trait." @@ -33,5 +33,5 @@ include = [ rustdoc-args = [ "--html-in-header", "katex.html" ] [dependencies.libm] -version = "0.2.5" +version = "0.2.6" optional = true diff --git a/RELEASES.md b/RELEASES.md index 7a05618..3f0e316 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,8 @@ +# Version 0.7.2 (2023-02-15) + + * Add `Send + Sync` and `FromStr` bounds. + * Update KaTeX. + # Version 0.7.1 (2022-09-23) * Synchronize with nightly Rust (by marking traits with `const_trait`).