[Git][ghc/ghc][wip/backports] 2 commits: Clean up TBDs in changelog
Ben Gamari
gitlab at gitlab.haskell.org
Mon Aug 17 19:09:35 UTC 2020
Ben Gamari pushed to branch wip/backports at Glasgow Haskell Compiler / GHC
Commits:
e2ac0493 by Ben Gamari at 2020-08-17T09:17:45-04:00
Clean up TBDs in changelog
(cherry picked from commit 4f334120c8e9cc4aefcbf11d99f169f648af9fde)
- - - - -
ca492b07 by Ben Gamari at 2020-08-17T15:09:27-04:00
Cabal
- - - - -
3 changed files:
- libraries/base/changelog.md
- libraries/template-haskell/changelog.md
- utils/ghc-cabal/ghc.mk
Changes:
=====================================
libraries/base/changelog.md
=====================================
@@ -30,7 +30,7 @@
* Add `Ix` instances for tuples of size 6 through 15
-## 4.14.0.0 *TBA*
+## 4.14.0.0 *Jan 2020
* Bundled with GHC 8.10.1
* Add a `TestEquality` instance for the `Compose` newtype.
@@ -322,7 +322,7 @@
in constant space when applied to lists. (#10830)
* `mkFunTy`, `mkAppTy`, and `mkTyConApp` from `Data.Typeable` no longer exist.
- This functionality is superseded by the interfaces provided by
+ This functionality is superceded by the interfaces provided by
`Type.Reflection`.
* `mkTyCon3` is no longer exported by `Data.Typeable`. This function is
=====================================
libraries/template-haskell/changelog.md
=====================================
@@ -34,7 +34,9 @@
* The argument to `TExpQ` can now be levity polymorphic.
-## 2.16.0.0 *TBA*
+## 2.16.0.0 *Jan 2020*
+
+ * Bundled with GHC 8.10.1
* Add support for tuple sections. (#15843) The type signatures of `TupE` and
`UnboxedTupE` have changed from `[Exp] -> Exp` to `[Maybe Exp] -> Exp`.
@@ -58,6 +60,8 @@
## 2.15.0.0 *May 2019*
+ * Bundled with GHC 8.8.1
+
* In `Language.Haskell.TH.Syntax`, `DataInstD`, `NewTypeInstD`, `TySynEqn`,
and `RuleP` now all have a `Maybe [TyVarBndr]` argument, which contains a
list of quantified type variables if an explicit `forall` is present, and
@@ -80,6 +84,8 @@
## 2.14.0.0 *September 2018*
+ * Bundled with GHC 8.6.1
+
* Introduce an `addForeignFilePath` function, as well as a corresponding
`qAddForeignFile` class method to `Quasi`. Unlike `addForeignFile`, which
takes the contents of the file as an argument, `addForeignFilePath` takes
=====================================
utils/ghc-cabal/ghc.mk
=====================================
@@ -37,25 +37,13 @@ ifneq "$(BINDIST)" "YES"
$(ghc-cabal_INPLACE) : $(ghc-cabal_DIST_BINARY) | $$(dir $$@)/.
"$(CP)" $< $@
-# Minor hack, since we can't reuse the `hs-suffix-rules-srcdir` macro
-ifneq ($(wildcard libraries/Cabal/Cabal/Distribution/Fields/Lexer.x),)
-# Lexer.x exists so we have to call Alex ourselves
-CABAL_LEXER_DEP := bootstrapping/Cabal/Distribution/Fields/Lexer.hs
-
-bootstrapping/Cabal/Distribution/Fields/Lexer.hs: libraries/Cabal/Cabal/Distribution/Fields/Lexer.x
- mkdir -p bootstrapping/Cabal/Distribution/Fields
- $(call cmd,ALEX) $< -o $@
-else
-CABAL_LEXER_DEP := libraries/Cabal/Cabal/Distribution/Fields/Lexer.hs
-endif
-
$(ghc-cabal_DIST_BINARY): $(wildcard libraries/Cabal/Cabal/Distribution/*/*/*.hs)
$(ghc-cabal_DIST_BINARY): $(wildcard libraries/Cabal/Cabal/Distribution/*/*.hs)
$(ghc-cabal_DIST_BINARY): $(wildcard libraries/Cabal/Cabal/Distribution/*.hs)
# N.B. Compile with -O0 since this is not a performance-critical executable
# and the Cabal takes nearly twice as long to build with -O1. See #16817.
-$(ghc-cabal_DIST_BINARY): $(CABAL_LEXER_DEP) utils/ghc-cabal/Main.hs $(TOUCH_DEP) | $$(dir $$@)/. bootstrapping/.
+$(ghc-cabal_DIST_BINARY): utils/ghc-cabal/Main.hs $(TOUCH_DEP) | $$(dir $$@)/. bootstrapping/.
"$(GHC)" $(SRC_HC_OPTS) \
$(addprefix -optc, $(SRC_CC_OPTS) $(CONF_CC_OPTS_STAGE0)) \
$(addprefix -optl, $(SRC_LD_OPTS) $(CONF_GCC_LINKER_OPTS_STAGE0)) \
@@ -69,7 +57,6 @@ $(ghc-cabal_DIST_BINARY): $(CABAL_LEXER_DEP) utils/ghc-cabal/Main.hs $(TOUCH_DEP
-DBOOTSTRAPPING \
-odir bootstrapping \
-hidir bootstrapping \
- $(CABAL_LEXER_DEP) \
-ilibraries/Cabal/Cabal \
-ilibraries/binary/src \
-ilibraries/filepath \
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/8b16ddb52f70a85dd39db1bdf1b9a90fed0460b0...ca492b077bd33e069b43b6e5e6d5d4d979e05f55
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/8b16ddb52f70a85dd39db1bdf1b9a90fed0460b0...ca492b077bd33e069b43b6e5e6d5d4d979e05f55
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200817/f1c0c90a/attachment-0001.html>
More information about the ghc-commits
mailing list