From f7129fc2486700638bf90d584c64d283fd02c73e Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Tue, 18 Jun 2024 19:54:58 -0700 Subject: [PATCH] Release Version 0.1.1 (2023-06-14) ### Fixed - Fixed docs failing to build on docs.rs --- CHANGELOG.md | 11 +++++++++-- Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5ca4d..8727b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file -## Unreleased +## Version 0.1.1 (2023-06-14) - 2024-06-19 -initial commit \ No newline at end of file +### Fixed + +- Fixed docs failing to build on docs.rs + + +## Version 0.1.0 (2023-06-14) + +Initial Release \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 6bbe0a0..8eafcd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "vector-victor" license = "MPL-2.0" description = "Yet another linear algebra crate" -version = "0.1.0" +version = "0.1.1" edition = "2021" keywords = ["matrix", "vector", "linear-algebra"] categories = ["graphics", "mathematics"] @@ -18,5 +18,5 @@ num-traits = "0.2.15" [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", - "doc/mathjax.html", + "vector-victor/docs/mathjax.html", ]