packages feed

STL 0.3.0.2 → 0.3.0.3

raw patch · 2 files changed

+8/−3 lines, 2 filesdep ~attoparsecdep ~cerealPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: attoparsec, cereal

API changes (from Hackage documentation)

- Graphics.Formats.STL: name :: STL -> Text
- Graphics.Formats.STL: normal :: Triangle -> Maybe Vector
- Graphics.Formats.STL: triangles :: STL -> [Triangle]
- Graphics.Formats.STL: vertices :: Triangle -> (Vector, Vector, Vector)
- Graphics.Formats.STL.Types: instance Serialize STL
- Graphics.Formats.STL.Types: instance Serialize Triangle
- Graphics.Formats.STL.Types: name :: STL -> Text
- Graphics.Formats.STL.Types: normal :: Triangle -> Maybe Vector
- Graphics.Formats.STL.Types: triangles :: STL -> [Triangle]
- Graphics.Formats.STL.Types: vertices :: Triangle -> (Vector, Vector, Vector)
+ Graphics.Formats.STL: [name] :: STL -> Text
+ Graphics.Formats.STL: [normal] :: Triangle -> Maybe Vector
+ Graphics.Formats.STL: [triangles] :: STL -> [Triangle]
+ Graphics.Formats.STL: [vertices] :: Triangle -> (Vector, Vector, Vector)
+ Graphics.Formats.STL.Types: [name] :: STL -> Text
+ Graphics.Formats.STL.Types: [normal] :: Triangle -> Maybe Vector
+ Graphics.Formats.STL.Types: [triangles] :: STL -> [Triangle]
+ Graphics.Formats.STL.Types: [vertices] :: Triangle -> (Vector, Vector, Vector)
+ Graphics.Formats.STL.Types: instance Data.Serialize.Serialize Graphics.Formats.STL.Types.STL
+ Graphics.Formats.STL.Types: instance Data.Serialize.Serialize Graphics.Formats.STL.Types.Triangle

Files

CHANGES.md view
@@ -1,3 +1,8 @@+0.3.0.3+-------++- allow `cereal-0.5`+ 0.3.0.2 ------- 
STL.cabal view
@@ -1,5 +1,5 @@ name:                STL-version:             0.3.0.2+version:             0.3.0.3 synopsis:            STL 3D geometry format parsing and pretty-printing description:         STL is a simple file format for representing 3D                      objects as the triangles which form their@@ -33,9 +33,9 @@   -- other-modules:   -- other-extensions:   build-depends:    base >=4.5 && <4.9,-                    attoparsec >= 0.11 && < 0.14,+                    attoparsec >= 0.10 && < 0.14,                     text >= 0.11.1.5 && < 1.3,-                    cereal >= 0.4 && < 0.5,+                    cereal >= 0.4 && < 0.6,                     bytestring >= 0.10.2 && < 0.11   hs-source-dirs:   src   default-language: Haskell2010