Skip to content

Commit 8901f7a

Browse files
authored
Merge pull request #1076 from haskell/primitive-0.9
Allow primitive-0.9
2 parents 397b989 + 388824a commit 8901f7a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.17.20231004
11+
# version: 0.17.20231010
1212
#
13-
# REGENDATA ("0.17.20231004",["github","cabal.project"])
13+
# REGENDATA ("0.17.20231010",["github","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -32,9 +32,9 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35-
- compiler: ghc-9.8.0.20230929
35+
- compiler: ghc-9.8.1
3636
compilerKind: ghc
37-
compilerVersion: 9.8.0.20230929
37+
compilerVersion: 9.8.1
3838
setup-method: ghcup
3939
allow-failure: false
4040
- compiler: ghc-9.6.3
@@ -92,7 +92,6 @@ jobs:
9292
mkdir -p "$HOME/.ghcup/bin"
9393
curl -sL https://downloads.haskell.org/ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 > "$HOME/.ghcup/bin/ghcup"
9494
chmod a+x "$HOME/.ghcup/bin/ghcup"
95-
"$HOME/.ghcup/bin/ghcup" config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml;
9695
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
9796
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
9897
else
@@ -102,7 +101,6 @@ jobs:
102101
mkdir -p "$HOME/.ghcup/bin"
103102
curl -sL https://downloads.haskell.org/ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 > "$HOME/.ghcup/bin/ghcup"
104103
chmod a+x "$HOME/.ghcup/bin/ghcup"
105-
"$HOME/.ghcup/bin/ghcup" config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml;
106104
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
107105
fi
108106
env:

aeson.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: aeson
22
version: 2.2.1.0
3+
x-revision: 1
34
license: BSD3
45
license-file: LICENSE
56
category: Text, Web, JSON
@@ -126,7 +127,7 @@ library
126127
, integer-logarithms >=1.0.3.1 && <1.1
127128
, network-uri >=2.6.4.1 && <2.7
128129
, OneTuple >=0.4.1.1 && <0.5
129-
, primitive >=0.8.0.0 && <0.9
130+
, primitive >=0.8.0.0 && <0.10
130131
, QuickCheck >=2.14.3 && <2.15
131132
, scientific >=0.3.7.0 && <0.4
132133
, semialign >=1.3 && <1.4

attoparsec-aeson/attoparsec-aeson.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ library
4949
, base >=4.10.0.0 && <5
5050
, bytestring >=0.10.8.2 && <0.13
5151
, integer-conversion >=0.1 && <0.2
52-
, primitive >=0.8.0.0 && <0.9
52+
, primitive >=0.8.0.0 && <0.10
5353
, scientific >=0.3.7.0 && <0.4
5454
, text >=1.2.3.0 && <1.3 || >=2.0 && <2.2
5555
, vector >=0.12.0.1 && <0.14

0 commit comments

Comments
 (0)