reflection 1.1.5.1 → 1.1.6
raw patch · 2 files changed
+6/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- fast/Data/Reflection.hs +1/−1
- reflection.cabal +5/−1
fast/Data/Reflection.hs view
@@ -57,4 +57,4 @@ -- | Reify a value at the type level, to be recovered with 'reflect'. reify :: a -> (forall s. Reifies s a => Proxy s -> r) -> r-reify a k = (unsafeCoerce (Magic k) $! const a) Proxy+reify a k = unsafeCoerce (Magic k) (const a) Proxy
reflection.cabal view
@@ -1,5 +1,5 @@ name: reflection-version: 1.1.5.1+version: 1.1.6 license: BSD3 license-file: LICENSE author: Edward A. Kmett, Elliott Hird, Oleg Kiselyov and Chung-chieh Shan@@ -21,6 +21,10 @@ . The original paper can be obtained from <http://www.cs.rutgers.edu/~ccshan/prepose/prepose.pdf>.+ .+ /Changes in 1.1.6/:+ .+ * Relaxed an unnecessary strictness annotation in the fast implementation . /Changes in 1.1.5/: .