Skip to content

Commit 8732a21

Browse files
committed
resolver: lts-11.5
1 parent 01b98cf commit 8732a21

File tree

29 files changed

+32
-33
lines changed

29 files changed

+32
-33
lines changed

doc/GUIDE.md

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

430-
* The appropriate resolver value (`resolver: lts-11.2`, as is currently the latest LTS)
430+
* The appropriate resolver value (`resolver: lts-11.5`, as is currently the latest LTS)
431431
* The GHC version used
432432
* A full list of all packages available in this snapshot
433433
* The ability to perform a Hoogle search on the packages in this snapshot
@@ -444,7 +444,7 @@ default as well).
444444

445445
## Resolvers and changing your compiler version
446446

447-
Let's explore package sets a bit further. Instead of lts-11.2, let's change our
447+
Let's explore package sets a bit further. Instead of lts-11.5, let's change our
448448
`stack.yaml` file to use [the latest nightly](https://www.stackage.org/nightly). Right now,
449449
this is currently 2017-12-19 - please see the resolve from the link above to get the latest.
450450

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

462462
```
463-
michael@d30748af6d3d:~/helloworld$ stack --resolver lts-11.2 build
464-
Downloaded lts-11.2 build plan.
463+
michael@d30748af6d3d:~/helloworld$ stack --resolver lts-11.5 build
464+
Downloaded lts-11.5 build plan.
465465
# build output ...
466466
```
467467

etc/scripts/install-many-stack-releases.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env stack
22
{- stack script
3-
--resolver lts-11.2
3+
--resolver lts-11.5
44
--package base
55
--package directory
66
--package filepath

etc/scripts/stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
resolver: lts-11.2
1+
resolver: lts-11.5

stack.yaml

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

33
# docker:
44
# enable: true
@@ -19,7 +19,6 @@ flags:
1919
extra-deps:
2020
- rio-0.1.0.0@rev:0
2121
- Cabal-2.2.0.1@rev:0
22-
- hackage-security-0.5.3.0@rev:0
2322
- hpack-0.28.2
2423
- http-api-data-0.3.8.1@rev:0
2524

test/integration/lib/StackTest.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ isMacOSX = os == "darwin"
208208
-- the main @stack.yaml@.
209209
--
210210
defaultResolverArg :: String
211-
defaultResolverArg = "--resolver=lts-11.2"
211+
defaultResolverArg = "--resolver=lts-11.5"
212212

213213
-- | Remove a file and ignore any warnings about missing files.
214214
removeFileIgnore :: FilePath -> IO ()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
resolver: lts-11.2
2+
resolver: lts-11.5
33
name: local-snapshot
44
packages:
55
- archive: package-0.1.2.3.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
resolver: lts-11.2
2+
resolver: lts-11.5
33
name: remote-snapshot
44
packages:
55
- archive: https://hackage.haskell.org/package/ghc-prim-0.5.1.1/ghc-prim-0.5.1.1.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-11.2
1+
resolver: lts-11.5
22
name: snapshot-modify-lts
33
drop-packages:
44
- zlib

test/integration/tests/1337-unicode-everywhere/files/stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-11.2
1+
resolver: lts-11.5
22
packages:
33
- '.'
44
extra-deps: []

test/integration/tests/1659-skip-component/files/stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-11.2
1+
resolver: lts-11.5
22
packages:
33
- '.'
44
extra-deps: []

0 commit comments

Comments
 (0)