Skip to content

Commit 6967596

Browse files
authored
Merge pull request #92 from haskell-hvr/random-1.3
Allow random-1.3
2 parents c704151 + a91c59c commit 6967596

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 8 additions & 8 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.19.20241223
11+
# version: 0.19.20250330
1212
#
13-
# REGENDATA ("0.19.20241223",["github","cabal.project"])
13+
# REGENDATA ("0.19.20250330",["github","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
linux:
2525
name: Haskell-CI - Linux - ${{ matrix.compiler }}
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-24.04
2727
timeout-minutes:
2828
60
2929
container:
@@ -32,9 +32,9 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35-
- compiler: ghc-9.12.1
35+
- compiler: ghc-9.12.2
3636
compilerKind: ghc
37-
compilerVersion: 9.12.1
37+
compilerVersion: 9.12.2
3838
setup-method: ghcup
3939
allow-failure: false
4040
- compiler: ghc-9.10.1
@@ -91,12 +91,12 @@ jobs:
9191
- name: Install GHCup
9292
run: |
9393
mkdir -p "$HOME/.ghcup/bin"
94-
curl -sL https://downloads.haskell.org/ghcup/0.1.30.0/x86_64-linux-ghcup-0.1.30.0 > "$HOME/.ghcup/bin/ghcup"
94+
curl -sL https://downloads.haskell.org/ghcup/0.1.50.1/x86_64-linux-ghcup-0.1.50.1 > "$HOME/.ghcup/bin/ghcup"
9595
chmod a+x "$HOME/.ghcup/bin/ghcup"
9696
- name: Install cabal-install
9797
run: |
98-
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
99-
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
98+
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.1.1-p1 || (cat "$HOME"/.ghcup/logs/*.* && false)
99+
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.1.1-p1 -vnormal+nowrap" >> "$GITHUB_ENV"
100100
- name: Install GHC (GHCup)
101101
if: matrix.setup-method == 'ghcup'
102102
run: |

uuid-types/uuid-types.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 1.12
22
name: uuid-types
33
version: 1.0.6
4-
x-revision: 2
4+
x-revision: 3
55
copyright:
66
(c) 2017-2018 Herbert Valerio Riedel
77
(c) 2008-2014 Antoine Latter
@@ -22,7 +22,7 @@ tested-with:
2222
|| ==9.6.6
2323
|| ==9.8.4
2424
|| ==9.10.1
25-
|| ==9.12.1
25+
|| ==9.12.2
2626

2727
synopsis: Type definitions for Universally Unique Identifiers
2828
description:
@@ -51,7 +51,7 @@ library
5151
, bytestring >=0.10.8.2 && <0.13
5252
, deepseq >=1.4.4.0 && <1.6
5353
, hashable >=1.4.4.0 && <1.6
54-
, random >=1.2.1.2 && <1.3
54+
, random >=1.2.1.2 && <1.4
5555
, template-haskell >=2.14.0.0 && <2.24
5656
, text >=1.2.3.0 && <1.3 || >=2.0 && <2.2
5757

uuid/uuid.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 1.12
22
name: uuid
33
version: 1.3.16
4-
x-revision: 2
4+
x-revision: 3
55
copyright: (c) 2008-2014 Antoine Latter
66
author: Antoine Latter
77
maintainer: Oleg Grenrus <[email protected]>
@@ -19,7 +19,7 @@ tested-with:
1919
|| ==9.6.6
2020
|| ==9.8.4
2121
|| ==9.10.1
22-
|| ==9.12.1
22+
|| ==9.12.2
2323

2424
synopsis:
2525
For creating, comparing, parsing and printing Universally Unique Identifiers
@@ -48,7 +48,7 @@ library
4848
, cryptohash-sha1 >=0.11.100 && <0.12
4949
, entropy >=0.3.7 && <0.5
5050
, network-info >=0.2 && <0.3
51-
, random >=1.2.1.2 && <1.3
51+
, random >=1.2.1.2 && <1.4
5252
, text >=1.2.3.0 && <1.3 || >=2.0 && <2.2
5353
, time >=1.4 && <1.15
5454

0 commit comments

Comments
 (0)