exceptions 0.1.0.1 → 0.1.1
raw patch · 3 files changed
+13/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +8/−0
- exceptions.cabal +1/−1
- src/Control/Monad/Catch.hs +4/−0
CHANGELOG.markdown view
@@ -1,3 +1,11 @@+0.1.1+-----+* Flagged `Control.Monad.Catch` as `Trustworthy`++0.1.0.1+-----+* License fix. We were accidentally listing both an APL and BSD3 license in the same module+ 0.1 --- * Repository initialized
exceptions.cabal view
@@ -1,6 +1,6 @@ name: exceptions category: Control, Exceptions, Monad-version: 0.1.0.1+version: 0.1.1 cabal-version: >= 1.8 license: OtherLicense license-file: LICENSE
src/Control/Monad/Catch.hs view
@@ -22,6 +22,10 @@ {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE UndecidableInstances #-} +#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif+ #ifndef MIN_VERSION_transformers #define MIN_VERSION_transformers(x,y,z) 1 #endif