Skip to content

Commit daf5959

Browse files
authored
Bump containers and ansi-wl-pprint upper bounds; bump version to 0.4.5 (#67)
1 parent c44b60a commit daf5959

3 files changed

Lines changed: 13 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,15 @@ jobs:
2525
os: [ ubuntu-latest ]
2626
cabal: [latest]
2727
ghc:
28-
- "8.0"
29-
- "8.2"
30-
- "8.4"
31-
- "8.6"
32-
- "8.8"
3328
- "8.10"
3429
- "9.0"
3530
- "9.2"
3631
- "9.4"
32+
- "9.6"
3733
- "9.8"
34+
- "9.10"
35+
- "9.12"
36+
- "9.14"
3837
# exclude:
3938
# - os: macOS-latest
4039
# ghc: 8.8

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# NEXT
22

3+
# 0.4.5
4+
5+
* Bump `containers` and `ansi-wl-pprint` upper bounds
6+
* Add more recent GHCs to CI matrix
7+
38
# 0.4.4
49

510
* Add `Alpha` and `Subst` instances for `NonEmpty`. Thanks Brent Yorgey (byorgey)

unbound-generics.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: unbound-generics
3-
version: 0.4.4
3+
version: 0.4.5
44
synopsis: Support for programming with names and binders using GHC Generics
55
description: Specify the binding structure of your data type with an
66
expressive set of type combinators, and unbound-generics
@@ -28,7 +28,7 @@ extra-source-files: examples/*.hs, examples/*.lhs,
2828
README.md,
2929
Changelog.md
3030

31-
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.*, GHC == 9.4.*, GHC == 9.8.*
31+
tested-with: GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.*, GHC == 9.4.*, GHC == 9.6.*, GHC == 9.8.*, GHC == 9.10.*, GHC == 9.12.*, GHC == 9.14.*
3232

3333
library
3434
exposed-modules: Unbound.Generics.LocallyNameless
@@ -59,10 +59,10 @@ library
5959
mtl >= 2.1,
6060
transformers >= 0.3 && < 0.7,
6161
transformers-compat >= 0.3,
62-
containers >= 0.5 && < 0.8,
62+
containers >= 0.5 && < 0.9,
6363
contravariant >= 0.5,
6464
profunctors >= 4.0,
65-
ansi-wl-pprint >= 0.6.7.2 && < 1.1,
65+
ansi-wl-pprint >= 0.6.7.2 && < 1.2,
6666
exceptions >= 0.8 && < 0.11
6767
hs-source-dirs: src
6868
default-language: Haskell2010

0 commit comments

Comments
 (0)