Skip to content

Commit 4aa5141

Browse files
authored
Merge pull request #5361 from commercialhaskell/stable-release
stack-2.3.3
2 parents 9d962e0 + 9108031 commit 4aa5141

File tree

7 files changed

+16
-21
lines changed

7 files changed

+16
-21
lines changed

.github/workflows/integration-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
run: |
3535
set -ex
3636
37+
# Work around 'git status' always showing symlinks modified on Windows; see
38+
# https://github.com/git-for-windows/git/issues/2653#issuecomment-640234081
39+
git config --global core.fscache false
40+
3741
stack upgrade || curl -sSL https://get.haskellstack.org/ | sh -s - -f
3842
3943
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]

ChangeLog.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
# Changelog
22

33

4-
## Unreleased changes
5-
6-
Release notes:
4+
## v2.3.3
75

86
**Changes since v2.3.1**
97

10-
Major changes:
11-
12-
Behavior changes:
13-
148
Other enhancements:
159

1610
* Add the `stack-developer-mode` flag
@@ -21,7 +15,6 @@ Bug fixes:
2115
* Fix the problem of `stack repl foo:test:bar` failing without a project
2216
build before that. See
2317
[#5213](https://github.com/commercialhaskell/stack/issues/5213)
24-
2518
* Fix `stack sdist` introducing unneded sublibrary syntax when using
2619
pvp-bounds. See
2720
[#5289](https://github.com/commercialhaskell/stack/issues/5289)

package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stack
2-
version: '2.3.2'
2+
version: '2.3.3'
33
synopsis: The Haskell Tool Stack
44
description: |
55
Please see the documentation at <https://docs.haskellstack.org>
@@ -92,7 +92,7 @@ dependencies:
9292
- network-uri
9393
- open-browser
9494
- optparse-applicative
95-
- pantry
95+
- pantry >= 0.4 && < 0.5
9696
- casa-client
9797
- casa-types
9898
- path

stack-ghc-810.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ nix:
1414
- unzip
1515
flags:
1616
stack:
17-
hide-dependency-versions: true
18-
supported-build: true
1917
developer-mode: true
2018

2119
ghc-options:

stack-ghc-88.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ nix:
1414
- unzip
1515
flags:
1616
stack:
17-
hide-dependency-versions: true
18-
supported-build: true
1917
developer-mode: true
2018

2119
ghc-options:

stack.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 2.0
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 09229f434502c702e4058371b91cc64f9e800aab8abe66fb228d8da3137558b7
7+
-- hash: 4088422ebf565b9347481c01d786688d78b9aadc34246063f6c05ca732b41ff1
88

99
name: stack
10-
version: 2.3.2
10+
version: 2.3.3
1111
synopsis: The Haskell Tool Stack
1212
description: Please see the documentation at <https://docs.haskellstack.org>
1313
for usage information.
@@ -272,7 +272,7 @@ library
272272
, network-uri
273273
, open-browser
274274
, optparse-applicative
275-
, pantry
275+
, pantry >=0.4 && <0.5
276276
, path
277277
, path-io
278278
, persistent
@@ -396,7 +396,7 @@ executable stack
396396
, network-uri
397397
, open-browser
398398
, optparse-applicative
399-
, pantry
399+
, pantry >=0.4 && <0.5
400400
, path
401401
, path-io
402402
, persistent
@@ -519,7 +519,7 @@ executable stack-integration-test
519519
, open-browser
520520
, optparse-applicative
521521
, optparse-generic
522-
, pantry
522+
, pantry >=0.4 && <0.5
523523
, path
524524
, path-io
525525
, persistent
@@ -647,7 +647,7 @@ test-suite stack-test
647647
, network-uri
648648
, open-browser
649649
, optparse-applicative
650-
, pantry
650+
, pantry >=0.4 && <0.5
651651
, path
652652
, path-io
653653
, persistent
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import System.Process (rawSystem)
22
import Control.Exception (throwIO)
3+
import StackTest
4+
import Control.Monad (unless)
35

46
main :: IO ()
5-
main = rawSystem "bash" ["run.sh"] >>= throwIO
7+
main = unless isWindows $ rawSystem "bash" ["run.sh"] >>= throwIO

0 commit comments

Comments
 (0)