# Ver 0.1.4 (2023-11-25) - Remove unnecessary constraint for `TrigOps` - Remove `Div` # Ver 0.1.3 (2023-11-09) - Add `Group` and `Ring` - `Group`: require `Add` and has `zero()` - `Ring`: require `Group + Mul` and has `one()` - `f32` and `f64` are `Ring` # Ver 0.1.2 (2023-11-09) - Remove unnecessary constraints for `Numeric` - `T: Add + Sub + Mul + Div` - More specify `Neg` for `Numeric` & `Float`: `Neg` -> `Neg` # Ver 0.1.1 (2023-11-09) - Add constraints for `Numeric` - `T: Add + Sub + Mul + Div` - Add example : `Vec3D`