diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-11-01 10:54:32 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-11-01 11:59:24 +0100 |
commit | f8ba4b55cc3a061458f5cfabf17de96128defbbb (patch) | |
tree | 5a4331b48ec84e5c2e3d1d53e611957d78ff72dc /libraries | |
parent | 32f92a33b786cd70222393726aeb08ba2b9d63db (diff) | |
download | haskell-f8ba4b55cc3a061458f5cfabf17de96128defbbb.tar.gz |
Bump `base` version to 4.9.0.0 (closes #11026)
This also relaxes a few upper bounds on base in the ghc.git repo;
This required a mass-rewrite in testsuite/
sed -i s,base-4.8.2.0,base-4.9.0.0,g $(git grep -Fl 'base-4.8.2.0')
because it turns out the testsuite is still sensitive to package version
changes.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/base.cabal | 2 | ||||
-rw-r--r-- | libraries/base/changelog.md | 6 | ||||
-rw-r--r-- | libraries/template-haskell/template-haskell.cabal | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libraries/base/base.cabal b/libraries/base/base.cabal index 7a0ef9865a..5f86a14af1 100644 --- a/libraries/base/base.cabal +++ b/libraries/base/base.cabal @@ -1,5 +1,5 @@ name: base -version: 4.8.2.0 +version: 4.9.0.0 -- NOTE: Don't forget to update ./changelog.md license: BSD3 license-file: LICENSE diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index 97a49713fc..e62f019fdb 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -1,12 +1,12 @@ # Changelog for [`base` package](http://hackage.haskell.org/package/base) -## 4.8.2.0 *TBA* +## 4.9.0.0 *TBA* + + * Bundled with GHC 8.0 * The restore operation provided by `mask` and `uninterruptibleMask` now restores the previous masking state whatever the current masking state is. - * Bundled with GHC 7.12.1 - * `Alt`, `Dual`, `First`, `Last`, `Product`, and `Sum` now have `Data`, `MonadZip`, and `MonadFix` instances diff --git a/libraries/template-haskell/template-haskell.cabal b/libraries/template-haskell/template-haskell.cabal index f1265d494e..40debcb831 100644 --- a/libraries/template-haskell/template-haskell.cabal +++ b/libraries/template-haskell/template-haskell.cabal @@ -47,7 +47,7 @@ Library Language.Haskell.TH.Lib.Map build-depends: - base >= 4.6 && < 4.9, + base >= 4.6 && < 4.10, ghc-boot, pretty == 1.1.* |