Changes between Version 18 and Version 19 of Migration/7.10
- Timestamp:
- Dec 6, 2016 11:44:39 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Migration/7.10
v18 v19 249 249 See https://github.com/bos/aeson/commit/730a8c42b75f38e241da39933b03735a7c905538 for an example how to make code compatible with both, `time < 1.5` and `time >= 1.5`, or use http://hackage.haskell.org/package/time-locale-compat. 250 250 251 === `array-0.5.1.0` 252 253 In 0.5.0.0, one could derive Data.Array.Unboxed instances for newtype Int's, Word64's etc.: 254 255 {{{#!hs 256 newtype N = MkN Word64 257 deriving (IArray UArray) 258 }}} 259 260 After https://ghc.haskell.org/trac/ghc/ticket/9220 changed the UArray role to nominal, one has to manually create instances (see http://stackoverflow.com/a/40988667/69663 for an example).