@@ -14,7 +14,7 @@ Other enhancements:
1414Bug fixes:
1515
1616
17- ## v1.7.1
17+ ## v1.7.0.1 (releases candidate)
1818
1919Release notes:
2020
@@ -29,7 +29,7 @@ Behavior changes:
2929 this itself since ghc-8.0.2, and Stack's attempted workaround for older
3030 versions caused more problems than it solved.
3131
32- * ` stack new ` no longer initializes a project if the project template contain
32+ * ` stack new ` no longer initializes a project if the project template contains
3333 a stack.yaml file.
3434
3535Other enhancements:
@@ -65,14 +65,6 @@ Other enhancements:
6565
6666Bug fixes:
6767
68-
69-
70- ## v1.6.5
71-
72- Bug fixes:
73- * 1.6.1 introduced a change that made some precompiled cache files use
74- longer paths, sometimes causing builds to fail on windows. This has been
75- fixed. See [ #3649 ] ( https://github.com/commercialhaskell/stack/issues/3649 )
7668* The script interpreter's implicit file arguments are now passed before other
7769 arguments. See [ #3658 ] ( https://github.com/commercialhaskell/stack/issues/3658 ) .
7870 In particular, this makes it possible to pass ` -- +RTS ... -RTS ` to specify
@@ -85,6 +77,23 @@ Bug fixes:
8577 may interfere with benchmarks. It also prevented benchmark output from
8678 being displayed by default. This is now fixed. See
8779 [ #3663 ] ( https://github.com/commercialhaskell/stack/issues/3663 ) .
80+ * ` stack ghci ` now allows loading multiple packages with the same
81+ module name, as long as they have the same filepath. See
82+ [ #3776 ] ( https://github.com/commercialhaskell/stack/pull/3776 ) .
83+ * ` stack ghci ` no longer always adds a dependency on ` base ` . It is
84+ now only added when there are no local targets. This allows it to
85+ be to load code that uses replacements for ` base ` . See
86+ [ #3589 ] ( https://github.com/commercialhaskell/stack/issues/3589#issuecomment )
87+ * ` stack ghci ` now uses correct paths for autogen files with
88+ [ #3791 ] ( https://github.com/commercialhaskell/stack/issues/3791 )
89+
90+
91+ ## v1.6.5
92+
93+ Bug fixes:
94+ * 1.6.1 introduced a change that made some precompiled cache files use
95+ longer paths, sometimes causing builds to fail on windows. This has been
96+ fixed. See [ #3649 ] ( https://github.com/commercialhaskell/stack/issues/3649 )
8897* Some unnecessary rebuilds when no files were changed are now avoided, by
8998 having a separate build cache for each component of a package. See
9099 [ #3732 ] ( https://github.com/commercialhaskell/stack/issues/3732 ) .
@@ -101,13 +110,6 @@ Bug fixes:
101110 this bug, you will likely need to delete the binary build cache
102111 associated with the relevant custom snapshot. See
103112 [ #3714 ] ( https://github.com/commercialhaskell/stack/issues/3714 ) .
104- * ` stack ghci ` now allows loading multiple packages with the same
105- module name, as long as they have the same filepath. See
106- [ #3776 ] ( https://github.com/commercialhaskell/stack/pull/3776 ) .
107- * ` stack ghci ` no longer always adds a dependency on ` base ` . It is
108- now only added when there are no local targets. This allows it to
109- be to load code that uses replacements for ` base ` . See
110- [ #3589 ] ( https://github.com/commercialhaskell/stack/issues/3589#issuecomment )
111113* ` --no-rerun-tests ` has been fixed. Previously, after running a test
112114 we were forgetting to record the result, which meant that all tests
113115 always ran even if they had already passed before. See
@@ -118,8 +120,6 @@ Bug fixes:
118120 resilient against SIGKILL and machine failure. See
119121 [ hackage-security #187 ] ( https://github.com/haskell/hackage-security/issues/187 )
120122 and [ #3073 ] ( https://github.com/commercialhaskell/stack/issues/3073 ) .
121- * ` stack ghci ` now uses correct paths for autogen files with
122- [ #3791 ] ( https://github.com/commercialhaskell/stack/issues/3791 )
123123
124124
125125## v1.6.3.1
@@ -148,11 +148,13 @@ Bug fixes:
148148 allowing the Cabal library to flatten the
149149 ` GenericPackageDescription ` itself.
150150
151+
151152## v1.6.1.1
152153
153154Hackage-only release with no user facing changes (updated to build with
154155newer dependency versions).
155156
157+
156158## v1.6.1
157159
158160Major changes:
0 commit comments