Skip to content

Commit 2d1a40b

Browse files
committed
Drop GHC 7.10 support
It's becoming difficult to test against GHC 7.10 in CI, and there's probably little need to support building recent versions of this package with such old GHC versions. Related: haskell-CI/haskell-ci#719
1 parent 1ead969 commit 2d1a40b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
* Added `minBoundsFromFontStruct`, `maxBoundsFromFontStruct` (#88)
66

7+
* Drop support for GHC 7.10, require at least GHC 8.0.
8+
79
## 1.10.3 (2022-09-14)
810

911
* Added `cWX`, `cWY`, `cWWidth`, `cWHeight` constants (`AttributeMask`) (#82)

X11.cabal

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license-file: LICENSE
1010
copyright: Alastair Reid, 1999-2003, libraries@haskell.org 2003-2007,
1111
Don Stewart 2007-2009, Spencer Janssen 2007-2009, Daniel Wagner 2009-2011.
1212
maintainer: Daniel Wagner <daniel@wagner-home.com>
13-
tested-with: GHC == 7.10.3 || == 8.0.2 || == 8.2.2 || == 8.4.4 || == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.8 || == 9.4.8 || == 9.6.4 || == 9.8.2
13+
tested-with: GHC == 8.0.2 || == 8.2.2 || == 8.4.4 || == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.8 || == 9.4.8 || == 9.6.4 || == 9.8.2
1414
category: Graphics
1515
homepage: https://github.com/xmonad/X11
1616
bug-reports: https://github.com/xmonad/X11/issues
@@ -73,7 +73,8 @@ library
7373
Graphics.X11.Xlib.Window
7474
Graphics.X11.Xrandr
7575
other-modules: Graphics.X11.Xlib.Internal
76-
build-depends: base == 4.*, data-default-class == 0.1.*
76+
build-depends: base >= 4.9 && < 5
77+
, data-default-class == 0.1.*
7778
default-language: Haskell98
7879
default-extensions: CPP
7980
ForeignFunctionInterface

0 commit comments

Comments
 (0)