@@ -450,7 +450,7 @@ With that out of the way, let's dig a little bit more into these package sets,
450450also known as *snapshots*. We mentioned the LTS resolvers, and you can get quite a bit of
451451information 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,
472472this 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
483483Continuous 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```
11441144michael@d30748af6d3d:~ $ stack exec --package stm -- echo I installed the stm package via --package stm
11451145Run 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
11471147Writing global (non-project-specific) config file to: /home/michael/.stack/global/stack.yaml
11481148Note: You can change the snapshot via the resolver field there.
11491149I installed the stm package via --package stm
0 commit comments