gl 0.7.8 → 0.7.8.1
raw patch · 6 files changed
+10/−1 lines, 6 filessetup-changedPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +4/−0
- Generator.hs +1/−0
- Registry.hs +1/−0
- Setup.hs +1/−0
- gl.cabal +1/−1
- src/Graphics/GL/Internal/Proc.hs +2/−0
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.7.8.1+-------+* Cleaned up the remaining unused import warnings+ 0.7.8 ----- * Build clean on GHC 8
Generator.hs view
@@ -26,6 +26,7 @@ import Module import Registry import Utils+import Prelude data Entry = F String
Registry.hs view
@@ -25,6 +25,7 @@ ) where import Data.Functor+import Prelude data Registry = Registry { registryCommands :: [Command]
Setup.hs view
@@ -20,6 +20,7 @@ import Generator (generateSource) import Parser (parseFile) import Registry (deshenaniganize)+import Prelude generateAPI :: LocalBuildInfo -> IO () generateAPI l = do
gl.cabal view
@@ -1,5 +1,5 @@ name: gl-version: 0.7.8+version: 0.7.8.1 synopsis: Complete OpenGL raw bindings description: Complete OpenGL raw bindings license: BSD3
src/Graphics/GL/Internal/Proc.hs view
@@ -24,7 +24,9 @@ ) where import Control.Monad+#if __GLASGOW_HASKELL__ < 710 import Data.Functor+#endif import Data.Set as Set import Foreign.C.String import Foreign.Marshal.Alloc