prelude-extras 0.3 → 0.3.1
raw patch · 3 files changed
+4/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- prelude-extras.cabal +2/−2
- src/Prelude/Extras.hs +1/−1
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2011-2013 Edward Kmett+Copyright 2011-2014 Edward Kmett All rights reserved.
prelude-extras.cabal view
@@ -1,6 +1,6 @@ name: prelude-extras category: Polymorphism, Combinators-version: 0.3+version: 0.3.1 license: BSD3 cabal-version: >= 1.2 license-file: LICENSE@@ -9,7 +9,7 @@ stability: provisional homepage: http://github.com/ekmett/prelude-extras bug-reports: http://github.com/ekmett/prelude-extras/issues-copyright: Copyright (C) 2011-2013 Edward A. Kmett+copyright: Copyright (C) 2011-2014 Edward A. Kmett synopsis: Haskell 98 - higher order versions of Prelude classes description: Haskell 98 - higher order versions of Prelude classes to ease programming with polymorphic recursion and reduce UndecidableInstances
src/Prelude/Extras.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP #-}-#ifdef __GLASGOW_HASKELL__ && __GLASGOW_HASKELL__ > 702+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ > 702 #define DEFAULT_SIGNATURES {-# LANGUAGE DefaultSignatures #-} #endif