Skip to content

Commit a924109

Browse files
committed
stack*.yaml: bump resolvers
1 parent 49515cb commit a924109

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

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-16.15`, as is currently the latest LTS)
453+
* The appropriate resolver value (`resolver: lts-17.9`, 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-16.15, let's change our
470+
Let's explore package sets a bit further. Instead of lts-17.9, 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-16.15 build
487-
Downloaded lts-16.15 build plan.
486+
michael@d30748af6d3d:~/helloworld$ stack --resolver lts-17.9 build
487+
Downloaded lts-17.9 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-16.15
1146+
Using latest snapshot resolver: lts-17.9
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

stack-ghc-810.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
resolver: nightly-2021-03-31
1+
resolver: nightly-2021-04-23
22

33
packages:
44
- .
55

66
docker:
77
enable: false
8-
repo: fpco/stack-build:lts-16.31
8+
repo: fpco/stack-build:lts-17.8
99

1010
nix:
1111
# --nix on the command-line to enable.
@@ -19,8 +19,7 @@ flags:
1919
ghc-options:
2020
"$locals": -fhide-source-paths
2121

22-
extra-deps:
23-
- hi-file-parser-0.1.2.0@rev:0
22+
extra-deps: []
2423

2524
drop-packages:
2625
# See https://github.com/commercialhaskell/stack/pull/4712

stack-ghc-88.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
resolver: lts-15.5
1+
resolver: lts-15.16
22

33
packages:
44
- .
55

66
docker:
77
enable: false
8-
repo: fpco/stack-build:lts-15.5
8+
repo: fpco/stack-build:lts-15.16
99

1010
nix:
1111
# --nix on the command-line to enable.

0 commit comments

Comments
 (0)