rio 0.1.9.0 → 0.1.9.1
raw patch · 4 files changed
+8/−4 lines, 4 files
Files
- ChangeLog.md +5/−0
- rio.cabal +2/−2
- src/RIO/Prelude.hs +0/−1
- src/RIO/Prelude/Types.hs +1/−1
ChangeLog.md view
@@ -1,5 +1,10 @@ # Changelog for rio +## 0.1.9.1++* Remove accidental reexport of `Control.Applicative.empty` introduced in the previous release.+* Functions from `Data.Data.Data` class are brought to the re-export list as well.+ ## 0.1.9.0 * Add `Prelude.Exit` to export lifted versions of the exit functions from `System.Exit`.
rio.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6f5dc93d0508056a442e310600368aef689150506da77c8be79554052108f60a+-- hash: e4d808363ae67f8f6644747633818294f287d1c9e7cd539b5b71c90b74034aed name: rio-version: 0.1.9.0+version: 0.1.9.1 synopsis: A standard library for Haskell description: See README and Haddocks at <https://www.stackage.org/package/rio> category: Control
src/RIO/Prelude.hs view
@@ -257,7 +257,6 @@ -- * @Alternative@ -- | Re-exported from "Control.Applicative":- , Control.Applicative.empty , (Control.Applicative.<|>) , Control.Applicative.some , Control.Applicative.many
src/RIO/Prelude/Types.hs view
@@ -170,7 +170,7 @@ , Data.Typeable.Typeable -- **** @Data@ -- | Re-exported from "Data.Data":- , Data.Data.Data+ , Data.Data.Data(..) -- **** @Generic@ -- | Re-exported from "GHC.Generics": , GHC.Generics.Generic