Skip to content

Commit de2899f

Browse files
committed
Release preparation, Step D
1 parent 253b2f7 commit de2899f

File tree

8 files changed

+11
-15
lines changed

8 files changed

+11
-15
lines changed

ChangeLog.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
# Changelog
22

3-
## Unreleased changes
4-
5-
Release notes:
3+
## v3.3.0.1 (release candidate) - 2024-12-13
64

75
**Changes since v3.1.1:**
86

9-
Major changes:
10-
117
Behavior changes:
128

139
* Stack interprets consecutive line ends in the value of the `user-message`

cabal.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ constraints:
169169
, socks ==0.6.1
170170
, split ==0.2.5
171171
, splitmix ==0.1.0.5
172-
, stack ==3.2.0
172+
, stack ==3.3.0.1
173173
, static-bytes ==0.1.1
174174
, stm ==2.5.3.1
175175
, stm-chans ==3.0.0.9

doc/configure/yaml/non-project.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ notify the user if a `nix` executable is on the PATH?
11111111

11121112
## notify-if-no-run-benchmarks
11131113

1114-
:octicons-tag-24: UNRELEASED
1114+
[:octicons-tag-24: 3.3.1](https://github.com/commercialhaskell/stack/releases/tag/v3.3.1)
11151115

11161116
Default: `true`
11171117

@@ -1120,7 +1120,7 @@ prevented by the `--no-run-benchmarks` flag?
11201120

11211121
## notify-if-no-run-tests
11221122

1123-
:octicons-tag-24: UNRELEASED
1123+
[:octicons-tag-24: 3.3.1](https://github.com/commercialhaskell/stack/releases/tag/v3.3.1)
11241124

11251125
Default: `true`
11261126

doc/configure/yaml/project.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ installation, and various settings like build flags. It is also called a
3939
resolver since a snapshot states how dependencies are resolved. There are
4040
currently four snapshot types:
4141

42-
* LTS Haskell snapshots, e.g. `snapshot: lts-22.21`
43-
* Stackage Nightly snapshots, e.g. `snapshot: nightly-2024-05-06`
42+
* LTS Haskell snapshots, e.g. `snapshot: lts-23.0`
43+
* Stackage Nightly snapshots, e.g. `snapshot: nightly-2024-12-13`
4444
* No snapshot, just use packages shipped with the compiler. For GHC this looks
45-
like `snapshot: ghc-9.6.5`
45+
like `snapshot: ghc-9.8.4`
4646
* Custom snapshot, via a URL or relative file path. For further information, see
4747
the [snapshot location](../../topics/snapshot_location.md) documentation.
4848

doc/tutorial/building_your_project.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ With that out of the way, let's dig a little bit more into these snapshots. We
249249
mentioned the LTS snapshots, and you can get information about it at
250250
[https://www.stackage.org/lts](https://www.stackage.org/lts), including:
251251

252-
* The appropriate value (`lts-22.30`, as is currently the latest LTS)
252+
* The appropriate value (`lts-23.0`, as is currently the latest LTS)
253253
* The GHC version used
254254
* A full list of all packages versions available in this snapshot
255255
* The ability to perform a Hoogle search on the packages in this snapshot

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
spec-version: 0.35.0
33

44
name: stack
5-
version: '3.3.0'
5+
version: '3.3.0.1'
66
synopsis: The Haskell Tool Stack
77
description: |
88
Please see the documentation at <https://docs.haskellstack.org>

src/Stack/Init.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ renderStackYaml p ignoredPackages dupPackages =
432432
, "to be used for project dependencies. For example:"
433433
, ""
434434
, "snapshot: lts-23.0"
435-
, "snapshot: nightly-2024-12-09"
435+
, "snapshot: nightly-2024-12-13"
436436
, "snapshot: ghc-9.8.4"
437437
, ""
438438
, "The location of a snapshot can be provided as a file or url. Stack assumes"

stack.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 2.0
55
-- see: https://github.com/sol/hpack
66

77
name: stack
8-
version: 3.3.0
8+
version: 3.3.0.1
99
synopsis: The Haskell Tool Stack
1010
description: Please see the documentation at <https://docs.haskellstack.org>
1111
for usage information.

0 commit comments

Comments
 (0)