parallel 3.2.0.4 → 3.2.0.5
raw patch · 3 files changed
+20/−18 lines, 3 filesdep ~basedep ~deepseq
Dependency ranges changed: base, deepseq
Files
- changelog +0/−8
- changelog.md +13/−0
- parallel.cabal +7/−10
− changelog
@@ -1,8 +0,0 @@--*-change-log-*---3.2.0.4 Nov 2013- * Update package description to Cabal 1.10 format- * Add support for GHC 7.8- * Drop support for GHCs older than GHC 7.0.1- * Add NOINLINE pragmas to `parBuffer`, `parList`, and `evalBuffer`- to make RULEs more likely to fire
+ changelog.md view
@@ -0,0 +1,13 @@+# Changelog for [`parallel` package](http://hackage.haskell.org/package/parallel)++## 3.2.0.5 *Dec 2014*++ - Support `base-4.8.0.0`/`deepseq-1.4.0.0` (and thus GHC 7.10)++## 3.2.0.4 *Nov 2013*++ * Update package description to Cabal 1.10 format+ * Add support for GHC 7.8+ * Drop support for GHCs older than GHC 7.0.1+ * Add NOINLINE pragmas to `parBuffer`, `parList`, and `evalBuffer`+ to make RULEs more likely to fire
parallel.cabal view
@@ -1,8 +1,10 @@ name: parallel-version: 3.2.0.4+version: 3.2.0.5+-- NOTE: Don't forget to update ./changelog.md license: BSD3 license-file: LICENSE maintainer: libraries@haskell.org+bug-reports: https://github.com/haskell/parallel/issues synopsis: Parallel programming library category: Control, Parallelism build-type: Simple@@ -11,16 +13,11 @@ description: This package provides a library for parallel programming. -extra-source-files: changelog+extra-source-files: changelog.md source-repository head type: git- location: http://git.haskell.org/packages/parallel.git--source-repository this- type: git- location: http://git.haskell.org/packages/parallel.git- tag: parallel-3.2.0.4-release+ location: https://github.com/haskell/parallel.git library default-language: Haskell2010@@ -38,9 +35,9 @@ build-depends: array >= 0.3 && < 0.6,- base >= 4.3 && < 4.8,+ base >= 4.3 && < 4.9, containers >= 0.4 && < 0.6,- deepseq >= 1.1 && < 1.4+ deepseq >= 1.1 && < 1.5 ghc-options: -Wall