@@ -1,5 +1,9 @@
# Changelog
+## Release 0.2.1
+
+ - Forgot to actually make `Complex` visible to the user.
## Release 0.2.0
- The `Numeric` trait combining all the traits we need from our numeric values.
@@ -1,7 +1,7 @@
[package]
name = "lineal"
authors = ["Felix Bytow <drako@drako.guru>"]
-version = "0.2.0"
+version = "0.2.1"
edition = "2021"
publish = ["crates-drako-guru"]
@@ -1,5 +1,6 @@
//! The crate is a LINEar ALgebra library.
pub use self::traits::{Float, Numeric, Primitive};
+pub use self::types::Complex;
mod traits;
mod types;
@@ -115,7 +115,7 @@ impl<T: Float + Numeric + Primitive> Numeric for Complex<T> {
#[cfg(test)]
mod tests {
- use crate::types::complex::Complex;
+ use crate::Complex;
#[test]
fn division() {
@@ -1 +1,3 @@
+pub use complex::Complex;
mod complex;