Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support GHC 9.2.2 & updated bounds for haskell-gi 0.27 #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ library
, gi-glib
, gi-gtk >=3 && <4
, gi-gdk
, haskell-gi >=0.24 && <0.26
, haskell-gi-base >=0.24 && <0.26
, haskell-gi >=0.24 && <0.27
, haskell-gi-base >=0.24 && <0.27
, haskell-gi-overloading >=1.0 && <1.1
, pipes >=4 && <5
, pipes-concurrency >=2 && <3
Expand Down
6 changes: 3 additions & 3 deletions gi-gtk-declarative/gi-gtk-declarative.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gi-gtk-declarative
version: 0.7.0
version: 0.7.2
synopsis: Declarative GTK+ programming in Haskell
description: A declarative programming model for GTK+ user
interfaces, implementing support for various widgets
Expand Down Expand Up @@ -58,8 +58,8 @@ library
, gi-gobject >=2 && <3
, gi-glib >=2 && <3
, gi-gtk >=3 && <4
, haskell-gi >=0.24 && <0.26
, haskell-gi-base >=0.24 && <0.26
, haskell-gi >=0.24 && <0.27
, haskell-gi-base >=0.24 && <0.27
, haskell-gi-overloading >=1.0 && <1.1
, mtl
, text
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}

{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE UndecidableInstances #-}

Expand Down
12 changes: 7 additions & 5 deletions hie.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cradle:
direct:
arguments:
- -igi-gtk-declarative/src
- -igi-gtk-declarative-app-simple/src
- -iexamples
cabal:
- path: "./gi-gtk-declarative/src"
component: "lib:gi-gtk-declarative"
- path: "./gi-gtk-declarative-app-simple/src"
component: "lib:gi-gtk-declarative-app-simple"
- path: "./examples"
component: exe:example