Skip to content

Commit 9b060ce

Browse files
committed
updated stack resolver: lts-22.26
1 parent e6d0eed commit 9b060ce

File tree

22 files changed

+78
-38
lines changed

22 files changed

+78
-38
lines changed

Blackjack/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

3-
resolver: lts-21.4
3+
resolver: lts-22.26
4+
5+
allow-newer: true
46

57
# Local packages, usually specified by relative directory name
68
packages:

ClientServer/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

3-
resolver: lts-21.4
3+
resolver: lts-22.26
4+
5+
allow-newer: true
46

57
# Local packages, usually specified by relative directory name
68
packages:

CommandLineApp/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

Database-postgres/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

Database-sqlite/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

FastTag/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

HybridHaskellPythonCorefAnaphoraResolution/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
# A snapshot resolver dictates the compiler version and the set of packages
99
# to be used for project dependencies. For example:
1010
#
11-
resolver: lts-21.4
11+
resolver: lts-22.26
12+
13+
allow-newer: true
1214

1315
# User packages to be built.
1416
# Various formats can be used as shown in the example below.

HybridHaskellPythonNlp/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
# A snapshot resolver dictates the compiler version and the set of packages
99
# to be used for project dependencies. For example:
1010
#
11-
resolver: lts-21.4
11+
resolver: lts-22.26
12+
13+
allow-newer: true
1214

1315
# User packages to be built.
1416
# Various formats can be used as shown in the example below.

ImPure/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Read the resolvr version number from ~/.stack/config.yaml
22

3-
resolver: lts-21.4
3+
resolver: lts-22.26
4+
5+
allow-newer: true
46

57
# Local packages, usually specified by relative directory name
68
packages:

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ build:
33
cd ClientServer; stack build
44
cd CommandLineApp; stack build
55
echo "skipping building Database-postgres"
6-
cd Database-sqlite; stack build
6+
#cd Database-sqlite; stack build
77
cd debugging; stack build
88
cd ImPure; stack build
9-
cd NlpTool; stack build
9+
#cd NlpTool; stack build
1010
cd Pure; stack build
1111
cd SparqlClient; stack build
1212
cd StateMonad; stack build
@@ -17,11 +17,11 @@ build:
1717
cd FastTag; stack build
1818

1919
clean:
20-
rm -r -f */.stack-work
20+
rm -r -f */.stack-work */dist-newstyle
2121

2222
update_stack_resolver_macOs:
23-
sed -i '' 's/^resolver: .*/resolver: lts-21.4/' */stack.yaml
23+
sed -i '' 's/^resolver: .*/resolver: lts-22.26/' */stack.yaml
2424

2525
update_stack_resolver_linux:
26-
sed -i 's/^resolver: .*/resolver: lts-21.4/' */stack.yaml
26+
sed -i 's/^resolver: .*/resolver: lts-22.26/' */stack.yaml
2727

NlpTool/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
# to be used for project dependencies. For example:
1010
#
1111

12-
resolver: lts-21.4
12+
resolver: lts-22.26
13+
14+
allow-newer: true
1315

1416
# User packages to be built.
1517
# Various formats can be used as shown in the example below.

OpenAiApiClient/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
resolver: lts-21.4
1+
resolver: lts-22.26
2+
3+
allow-newer: true
24

35
# flags:
46
extra-package-dbs: []

Pure/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

SparqlClient/stack.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
resolver: lts-21.4
1+
resolver: lts-22.26
2+
3+
allow-newer: true
24

35
# flags:
46
extra-package-dbs: []
@@ -11,9 +13,9 @@ packages:
1113
# git: https://github.com/robstewart57/hsparql.git
1214
# commit: 7f6e1952e44c5e6edf952d3493e2263ef689385b
1315
extra-deps:
14-
- MissingH-1.4.3.0@sha256:32f9892ec98cd21df4f4d3ed8d95a3831ae74287ea0641d6f09b2dc6ef061d39,4859
15-
- random-1.2.1
16-
- hgal-2.0.0.2
16+
- MissingH-1.6.0.1
17+
- random-1.2.1.2
18+
- hgal-2.0.0.3
1719
- rdf4h-3.0.1
1820
- hsparql-0.2.9
1921

StateMonad/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

TestingHaskell/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
# resolver:
1616
# name: custom-snapshot
1717
# location: "./custom-snapshot.yaml"
18-
resolver: lts-21.4
18+
resolver: lts-22.26
19+
20+
allow-newer: true
1921

2022
# User packages to be built.
2123
# Various formats can be used as shown in the example below.

TextProcessing/stack.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ extra-package-dbs: []
33
packages:
44
- '.'
55
extra-deps:
6-
- MissingH-1.4.3.0@sha256:32f9892ec98cd21df4f4d3ed8d95a3831ae74287ea0641d6f09b2dc6ef061d39,4859
7-
- random-1.2.1
6+
- MissingH-1.6.0.1
7+
- random-1.2.1.2
88
- either-unwrap-1.1
9-
- json-0.10
10-
resolver: lts-21.4
9+
- json-0.11
10+
11+
resolver: lts-22.26
12+
allow-newer: true
1113

Timers/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

WebScraping/stack.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ packages:
33
- .
44
extra-deps:
55
- json-0.10
6-
resolver: lts-21.4
6+
resolver: lts-22.26
7+
allow-newer: true

debugging/stack.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-21.4
4+
resolver: lts-22.26
5+
6+
allow-newer: true
57

68
# Local packages, usually specified by relative directory name
79
packages:

knowledge_graph_creator_pure/stack.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
# A snapshot resolver dictates the compiler version and the set of packages
99
# to be used for project dependencies. For example:
1010

11-
resolver: lts-21.4
11+
resolver: lts-22.26
12+
13+
allow-newer: true
14+
1215

1316
# User packages to be built.
1417
# Various formats can be used as shown in the example below.

knowledge_graph_creator_pure/stack.yaml.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ packages:
77
- completed:
88
hackage: json-0.10@sha256:d9fc6b07ce92b8894825a17d2cf14799856767eb30c8bf55962baa579207d799,3210
99
pantry-tree:
10-
size: 3190
1110
sha256: 5654f66b7cd8bf087ac040a9b0a83eb064219eab32230f61a3adeddfdbb4d4cd
11+
size: 3190
1212
original:
1313
hackage: json-0.10
1414
- completed:
1515
hackage: sqlite-simple-0.4.18.0@sha256:3ceea56375c0a3590c814e411a4eb86943f8d31b93b110ca159c90689b6b39e5,3002
1616
pantry-tree:
17-
size: 1930
1817
sha256: e58b9955e483d51ee0966f8ba4384305d871480e2a38b32ee0fcd4573d74cf95
18+
size: 1930
1919
original:
2020
hackage: sqlite-simple-0.4.18.0
2121
- completed:
2222
hackage: direct-sqlite-2.3.26@sha256:04e835402f1508abca383182023e4e2b9b86297b8533afbd4e57d1a5652e0c23,3718
2323
pantry-tree:
24-
size: 770
2524
sha256: 11874ab21e10c5b54cd1e02a037b677dc1e2ee9986f38c599612c56654dc01c3
25+
size: 770
2626
original:
2727
hackage: direct-sqlite-2.3.26
2828
snapshots:
2929
- completed:
30-
size: 531237
31-
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/0.yaml
32-
sha256: 210e15b7043e2783115afe16b0d54914b1611cdaa73f3ca3ca7f8e0847ff54e5
33-
original: lts-16.0
30+
sha256: 8e7996960d864443a66eb4105338bbdd6830377b9f6f99cd5527ef73c10c01e7
31+
size: 719128
32+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/26.yaml
33+
original: lts-22.26

0 commit comments

Comments
 (0)