AVar 0.0.5 → 0.0.5.1
raw patch · 2 files changed
+4/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- AVar.cabal +3/−2
- Data/AVar/Internal.hs +1/−1
AVar.cabal view
@@ -1,5 +1,5 @@ Name: AVar-Version: 0.0.5+Version: 0.0.5.1 Category: Concurrency Synopsis: Mutable variables with Exception handling and concurrency support. Description: AVars emulate mutable variables, by providing a queue based@@ -15,6 +15,7 @@ New in this version: * Fixed a (MASSIVE) mistake where i had forgotten to export the newAVar function.+ * Gave in and exported Data.AVar.Internal License: BSD3 License-file: LICENSE.txt Author: Alex Mason@@ -28,5 +29,5 @@ Build-Depends: base >= 4.0.0.0, base < 6.0.0.0 Exposed-modules:- Data.AVar, Data.AVar.Unsafe+ Data.AVar, Data.AVar.Unsafe, Data.AVar.Internal
Data/AVar/Internal.hs view
@@ -7,7 +7,7 @@ AVar(..), Transaction(..), -- * functions on AVars- newAVar,+ newAVar ) where