@@ -17,7 +17,7 @@ available in snapshots to ensure reproducibility.
1717 snapshot specification.
1818
1919~~~ yaml
20- resolver : lts-21.12 # Inherits GHC version and package set
20+ resolver : lts-21.13 # Inherits GHC version and package set
2121compiler : ghc-9.6.2 # Overwrites GHC version in the resolver, optional
2222
2323# Additional packages, follows extra-deps syntax
@@ -61,35 +61,35 @@ custom snapshot, due to Stack sharing snapshot packages whenever possible.
6161
6262# ## Overriding the compiler
6363
64- The following snapshot specification will be identical to `lts-21.12 `, but
64+ The following snapshot specification will be identical to `lts-21.13 `, but
6565instead use `ghc-9.4.5` instead of `ghc-9.4.7` :
6666
6767~~~yaml
68- resolver : lts-21.12
68+ resolver : lts-21.13
6969compiler : ghc-9.4.5
7070~~~
7171
7272# ## Dropping packages
7373
74- The following snapshot specification will be identical to `lts-21.12 `, but
74+ The following snapshot specification will be identical to `lts-21.13 `, but
7575without the `text` package in our snapshot. Removing this package will cause all
7676the packages that depend on `text` to be unbuildable, but they will still be
7777present in the snapshot.
7878
7979~~~yaml
80- resolver : lts-21.12
80+ resolver : lts-21.13
8181drop-packages :
8282- text
8383~~~
8484
8585# ## Hiding packages
8686
87- The following snapshot specification will be identical to `lts-21.12 `, but the
87+ The following snapshot specification will be identical to `lts-21.13 `, but the
8888` text` package will be hidden when registering. This will affect, for example,
8989the import parser in the script command.
9090
9191~~~yaml
92- resolver : lts-21.12
92+ resolver : lts-21.13
9393hidden :
9494- text
9595~~~
@@ -99,11 +99,11 @@ hidden:
9999In order to specify GHC options for a package, you use the same syntax as the
100100[ghc-options](yaml_configuration.md#ghc-options) key for build configuration.
101101
102- The following snapshot specification will be identical to `lts-21.12 `, but
102+ The following snapshot specification will be identical to `lts-21.13 `, but
103103provides `-O1` as a ghc-option for `text` :
104104
105105~~~yaml
106- resolver : lts-21.12
106+ resolver : lts-21.13
107107packages :
108108- text-2.0.2
109109ghc-options :
@@ -122,11 +122,11 @@ packages in the `packages` list, rather than all packages in the snapshot.
122122
123123In order to specify Cabal flags for a package, you use the same syntax as the
124124[flags](yaml_configuration.md#flags) key for build configuration. The
125- following snapshot specification will be identical to `lts-21.12 `, but
125+ following snapshot specification will be identical to `lts-21.13 `, but
126126it enables the `developer` Cabal flag :
127127
128128~~~yaml
129- resolver : lts-21.12
129+ resolver : lts-21.13
130130packages :
131131- text-2.0.2
132132flags :
0 commit comments