Ver código fonte

:sparkles: started working on version 0.3.0

Felix Bytow 2 anos atrás
pai
commit
dd9a9cedbf
4 arquivos alterados com 9 adições e 1 exclusões
  1. 3 0
      .gitignore
  2. 4 0
      CHANGELOG.md
  3. 1 1
      Cargo.toml
  4. 1 0
      src/types/complex.rs

+ 3 - 0
.gitignore

@@ -9,3 +9,6 @@
 
 # MacOS
 .DS_Store
+
+# local scripts
+/*.sh

+ 4 - 0
CHANGELOG.md

@@ -1,5 +1,9 @@
 # Changelog
 
+## Release 0.3.0
+
+
+
 ## Release 0.2.3
 
 - fixed documentation example for `Complex`.

+ 1 - 1
Cargo.toml

@@ -5,7 +5,7 @@ description = "LINEar ALgebra"
 license = "MIT"
 repository = "https://github.com/Drako/lineal/"
 readme = "README.md"
-version = "0.2.3"
+version = "0.3.0"
 edition = "2021"
 publish = ["crates-drako-guru"]
 

+ 1 - 0
src/types/complex.rs

@@ -29,6 +29,7 @@ pub struct Complex<T: Float + Numeric + Primitive> {
 }
 
 impl<T: Float + Numeric + Primitive> Complex<T> {
+    /// The imaginary unit.
     pub fn i() -> Self {
         Self {
             real: T::whole(0),