spatial-math 0.5.0.0 → 0.5.0.1
raw patch · 3 files changed
+5/−2 lines, 3 files
Files
- changelog.txt +3/−0
- spatial-math.cabal +1/−1
- tests/doctests.hs +1/−1
changelog.txt view
@@ -1,3 +1,6 @@+0.5.0.1+- Fix doctest include path.+ 0.5.0 - Replace calls to Prelude's `atan2` function with calls to the C math library in `ArcTan2` instances for `Float` and `Double`
spatial-math.cabal view
@@ -1,5 +1,5 @@ name: spatial-math-version: 0.5.0.0+version: 0.5.0.1 synopsis: 3d math including quaternions/euler angles/dcms and utility functions description: This is a port of my 'mathlib' C library: `https://github.com/ghorn/mathlib` license: BSD3
tests/doctests.hs view
@@ -5,4 +5,4 @@ import Test.DocTest main :: IO ()-main = doctest ["src/Types.hs", "src/SpatialMath.hs"]+main = doctest ["-isrc", "src/Types.hs", "src/SpatialMath.hs"]