Skip to content

Commit 7927a3a

Browse files
committed
v2.7.3
1 parent 93d989c commit 7927a3a

File tree

8 files changed

+21
-27
lines changed

8 files changed

+21
-27
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ about: Report a bug in Stack
55

66
Please follow the steps below for reporting a bug:
77

8-
Make sure that you are using the latest release (currently stack-2.7.1).
8+
Make sure that you are using the latest release (currently stack-2.7.3).
99
See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade) to upgrade.
1010

1111
Please use the following schema for your bug report:

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature Request
33
about: Request a feature be added to Stack, or discuss such a feature
44
---
55

6-
Make sure that you are using the latest release (currently stack-2.7.1).
6+
Make sure that you are using the latest release (currently stack-2.7.3).
77
See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade) to upgrade.
88

99
Please state as clearly as possible what feature you are recommending,

ChangeLog.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
# Changelog
22

33

4-
## Unreleased changes
5-
6-
Release notes:
4+
## v2.7.3
75

86
**Changes since v2.7.1:**
97

10-
Major changes:
11-
12-
Behavior changes:
13-
148
Other enhancements:
159

16-
* `stack upgrade` will download from `haskellstack.org` before trying `github.com`. See
10+
* `stack upgrade` will download from `haskellstack.org` before trying
11+
`github.com`. See
1712
[#5288](https://github.com/commercialhaskell/stack/issues/5288)
1813
* `stack upgrade` makes less assumptions about archive format. See
1914
[#5288](https://github.com/commercialhaskell/stack/issues/5288)
@@ -30,12 +25,14 @@ Bug fixes:
3025
[pantry#33](https://github.com/commercialhaskell/pantry/issues/33)
3126
* When building the sanity check for a new GHC install, make sure to clear
3227
`GHC_PACKAGE_PATH`.
33-
* Specifying GHC RTS flags in the `stack.yaml` no longer fails with an error. [#5568](https://github.com/commercialhaskell/stack/pull/5568)
28+
* Specifying GHC RTS flags in the `stack.yaml` no longer fails with an error.
29+
[#5568](https://github.com/commercialhaskell/stack/pull/5568)
3430
* `stack setup` will look in sandboxed directories for executables, not
3531
relying on `findExecutables. See
3632
[GHC issue 20074](https://gitlab.haskell.org/ghc/ghc/-/issues/20074)
37-
* Track changes to `setup-config` properly to avoid reconfiguring on every change.
38-
See [#5578](https://github.com/commercialhaskell/stack/issues/5578)
33+
* Track changes to `setup-config` properly to avoid reconfiguring on every
34+
change. See [#5578](https://github.com/commercialhaskell/stack/issues/5578)
35+
3936

4037
## v2.7.1
4138

doc/GUIDE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ With that out of the way, let's dig a little bit more into these package sets,
450450
also known as *snapshots*. We mentioned the LTS resolvers, and you can get quite a bit of
451451
information about it at [https://www.stackage.org/lts](https://www.stackage.org/lts), including:
452452

453-
* The appropriate resolver value (`resolver: lts-17.9`, as is currently the latest LTS)
453+
* The appropriate resolver value (`resolver: lts-18.3`, as is currently the latest LTS)
454454
* The GHC version used
455455
* A full list of all packages available in this snapshot
456456
* The ability to perform a Hoogle search on the packages in this snapshot
@@ -467,7 +467,7 @@ default as well).
467467

468468
## Resolvers and changing your compiler version
469469

470-
Let's explore package sets a bit further. Instead of lts-17.9, let's change our
470+
Let's explore package sets a bit further. Instead of lts-18.3, let's change our
471471
`stack.yaml` file to use [the latest nightly](https://www.stackage.org/nightly). Right now,
472472
this is currently 2020-03-24 - please see the resolve from the link above to get the latest.
473473

@@ -483,8 +483,8 @@ We can also change resolvers on the command line, which can be useful in a
483483
Continuous Integration (CI) setting, like on Travis. For example:
484484

485485
```
486-
michael@d30748af6d3d:~/helloworld$ stack --resolver lts-17.9 build
487-
Downloaded lts-17.9 build plan.
486+
michael@d30748af6d3d:~/helloworld$ stack --resolver lts-18.3 build
487+
Downloaded lts-18.3 build plan.
488488
# build output ...
489489
```
490490

@@ -1143,7 +1143,7 @@ follows the Unix convention of `--` to separate these, e.g.:
11431143
```
11441144
michael@d30748af6d3d:~$ stack exec --package stm -- echo I installed the stm package via --package stm
11451145
Run from outside a project, using implicit global project config
1146-
Using latest snapshot resolver: lts-17.9
1146+
Using latest snapshot resolver: lts-18.3
11471147
Writing global (non-project-specific) config file to: /home/michael/.stack/global/stack.yaml
11481148
Note: You can change the snapshot via the resolver field there.
11491149
I installed the stm package via --package stm

etc/dockerfiles/arm64.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ USER stack
3030
RUN cd /src && stack build --only-snapshot --test && stack build shake
3131

3232
COPY etc/scripts/release.hs /src
33-
RUN stack script --resolver lts-17.10 --compile /src/release.hs -- --version && cp /src/release /home/stack
33+
RUN stack script --resolver lts-17.15 --compile /src/release.hs -- --version && cp /src/release /home/stack

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stack
2-
version: '2.8.0'
2+
version: '2.7.3'
33
synopsis: The Haskell Tool Stack
44
description: |
55
Please see the documentation at <https://docs.haskellstack.org>

stack.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cabal-version: 2.0
22

3-
-- This file has been generated from package.yaml by hpack version 0.33.0.
3+
-- This file has been generated from package.yaml by hpack version 0.34.4.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 4d6bc382d1f25fc7283e144b701061b38a5f10879c44997cfdc0b9f3147ce352
7+
-- hash: a602fe627b6dcb4f50470060f0b90cf1ee668145c6332918e48247480bb1bf8b
88

99
name: stack
10-
version: 2.8.0
10+
version: 2.7.3
1111
synopsis: The Haskell Tool Stack
1212
description: Please see the documentation at <https://docs.haskellstack.org>
1313
for usage information.

stack.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-17.10
1+
resolver: lts-17.15
22

33
packages:
44
- .
@@ -20,9 +20,6 @@ flags:
2020
ghc-options:
2121
"$locals": -fhide-source-paths
2222

23-
extra-deps:
24-
- pantry-0.5.2@rev:0
25-
2623
drop-packages:
2724
# See https://github.com/commercialhaskell/stack/pull/4712
2825
- cabal-install

0 commit comments

Comments
 (0)