Skip to content

Commit 47447cc

Browse files
authored
Merge pull request #38 from kaBeech/update-deps
Update dependencies
2 parents 42cb0bf + 688ed7a commit 47447cc

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest]
16-
ghc-version: ['9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6']
16+
ghc-version: ['9.12', '9.10', '9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6']
1717

1818
include:
1919
- os: windows-latest

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,9 @@
2525
* Supports Haskell2010
2626

2727
* Updates CI
28+
29+
## 0.1.0.5 -- 2025-01-07
30+
31+
* Supports up to random-1.4 and base-4.22
32+
33+
* Tests with GHC 9.8, GHC 9.10, and GHC 9.12

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024 Kyle Beechly
1+
Copyright (c) 2024-2025 Kyle Beechly
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

real-dice.cabal

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ name: real-dice
2222
-- | | | +--- code changes with no API change
2323
version: 0.1.0.4
2424

25-
tested-with: GHC==9.8.2,
25+
tested-with: GHC==9.12.1,
26+
GHC==9.10.1,
27+
GHC==9.8.4,
2628
GHC==9.6.4,
2729
GHC==9.4.8,
2830
GHC==9.2.8,
@@ -118,7 +120,7 @@ library
118120
-- other-extensions:
119121

120122
-- Other library packages from which modules are imported.
121-
build-depends: base >=4.12.0.0 && <= 4.20.0.1,
123+
build-depends: base >=4.12.0.0 && < 4.22,
122124
mtl >= 2.2.2 && < 2.4,
123125
primes >= 0.2.1 && < 0.3
124126

@@ -146,7 +148,7 @@ executable real-dice
146148
build-depends:
147149
base,
148150
mtl,
149-
random >= 1.2.1 && < 1.3,
151+
random >= 1.2.1 && < 1.4,
150152
real-dice
151153

152154
-- Directories containing source files.

0 commit comments

Comments
 (0)