Skip to content

Commit b5e7132

Browse files
authored
Bump version numbers to 3.15 (#10309)
* Bump version numbers to 3.15 * Bump GHC 9.6.6 for workflows * Update index-state * Bump bootstrap boundaries * Regenerate bootstrap files
1 parent b09b118 commit b5e7132

22 files changed

+651
-158
lines changed

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest]
33-
ghc: ["9.0.2", "9.2.8", "9.4.8", "9.6.4", "9.8.2"]
33+
ghc: ["9.0.2", "9.2.8", "9.4.8", "9.6.6", "9.8.2"]
3434
include:
3535
- os: macos-latest
3636
ghc: "9.2.8"

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
[
7272
"9.10.1",
7373
"9.8.2",
74-
"9.6.4",
74+
"9.6.6",
7575
"9.4.8",
7676
"9.2.8",
7777
"9.0.2",

Cabal-QuickCheck/Cabal-QuickCheck.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: Cabal-QuickCheck
3-
version: 3.13.0.0
3+
version: 3.15.0.0
44
synopsis: QuickCheck instances for types in Cabal
55
category: Testing
66
build-type: Simple
@@ -14,8 +14,8 @@ library
1414
build-depends:
1515
, base
1616
, bytestring
17-
, Cabal ^>=3.13.0.0
18-
, Cabal-syntax ^>=3.13.0.0
17+
, Cabal ^>=3.15.0.0
18+
, Cabal-syntax ^>=3.15.0.0
1919
, QuickCheck ^>=2.13.2 || ^>=2.14
2020

2121
exposed-modules:

Cabal-described/Cabal-described.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: Cabal-described
3-
version: 3.13.0.0
3+
version: 3.15.0.0
44
synopsis: Described functionality for types in Cabal
55
category: Testing, Parsec
66
description: Provides rere bindings
@@ -12,8 +12,8 @@ library
1212
ghc-options: -Wall
1313
build-depends:
1414
, base
15-
, Cabal ^>=3.13.0.0
16-
, Cabal-syntax ^>=3.13.0.0
15+
, Cabal ^>=3.15.0.0
16+
, Cabal-syntax ^>=3.15.0.0
1717
, containers
1818
, pretty
1919
, QuickCheck

Cabal-hooks/Cabal-hooks.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ library
2727
hs-source-dirs: src
2828

2929
build-depends:
30-
Cabal-syntax >= 3.13 && < 3.15,
31-
Cabal >= 3.13 && < 3.15,
30+
Cabal-syntax >= 3.15 && < 3.17,
31+
Cabal >= 3.15 && < 3.17,
3232
base >= 4.13 && < 5,
3333
containers >= 0.5.0.0 && < 0.8,
3434
transformers >= 0.5.6.0 && < 0.7

Cabal-syntax/Cabal-syntax.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: Cabal-syntax
3-
version: 3.13.0.0
3+
version: 3.15.0.0
44
copyright: 2003-2024, Cabal Development Team (see AUTHORS file)
55
license: BSD-3-Clause
66
license-file: LICENSE

Cabal-tree-diff/Cabal-tree-diff.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: Cabal-tree-diff
3-
version: 3.13.0.0
3+
version: 3.15.0.0
44
synopsis: QuickCheck instances for types in Cabal
55
category: Testing
66
description: Provides tree-diff ToExpr instances for some types in Cabal
@@ -11,8 +11,8 @@ library
1111
ghc-options: -Wall
1212
build-depends:
1313
, base
14-
, Cabal-syntax ^>=3.13.0.0
15-
, Cabal ^>=3.13.0.0
14+
, Cabal-syntax ^>=3.15.0.0
15+
, Cabal ^>=3.15.0.0
1616
, tree-diff ^>=0.1 || ^>=0.2 || ^>=0.3
1717

1818
exposed-modules: Data.TreeDiff.Instances.Cabal

Cabal/Cabal.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: Cabal
3-
version: 3.13.0.0
3+
version: 3.15.0.0
44
copyright: 2003-2024, Cabal Development Team (see AUTHORS file)
55
license: BSD-3-Clause
66
license-file: LICENSE
@@ -34,7 +34,7 @@ library
3434
hs-source-dirs: src
3535

3636
build-depends:
37-
Cabal-syntax ^>= 3.13,
37+
Cabal-syntax ^>= 3.15,
3838
array >= 0.4.0.1 && < 0.6,
3939
base >= 4.13 && < 5,
4040
bytestring >= 0.10.0.0 && < 0.13,

Cabal/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=3.13.0.0
1+
VERSION=3.15.0.0
22

33
#KIND=devel
44
KIND=rc

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ bootstrap-json-%: phony
226226
cd bootstrap && cabal run -v0 cabal-bootstrap-gen -- linux-$*.plan.json \
227227
| python3 -m json.tool > linux-$*.json
228228

229-
BOOTSTRAP_GHC_VERSIONS := 9.0.2 9.2.8 9.4.8 9.6.4 9.8.2
229+
BOOTSTRAP_GHC_VERSIONS := 9.0.2 9.2.8 9.4.8 9.6.6 9.8.2
230230

231231
.PHONY: bootstrap-jsons
232232
bootstrap-jsons: $(BOOTSTRAP_GHC_VERSIONS:%=bootstrap-json-%)

0 commit comments

Comments
 (0)