Skip to content

Commit

Permalink
0.9.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
echatav committed Sep 1, 2023
1 parent 693b53b commit fa20d37
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion squeal-postgresql-ltree/squeal-postgresql-ltree.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: squeal-postgresql-ltree
version: 0.1.0.1
version: 0.1.0.2
synopsis: LTree extension for Squeal
description: LTree extension for Squeal
homepage: https://github.com/morphismtech/squeal/ltree
Expand Down
3 changes: 2 additions & 1 deletion squeal-postgresql-ltree/src/Squeal/PostgreSQL/LTree.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ module Squeal.PostgreSQL.LTree
) where

import Control.Exception hiding (TypeError)
import Control.Monad.Reader
import Control.Monad (when)
import Control.Monad.Reader (ReaderT(ReaderT))
import Data.String
import Data.Text
import GHC.Generics
Expand Down
2 changes: 1 addition & 1 deletion squeal-postgresql/squeal-postgresql.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: squeal-postgresql
version: 0.9.1.1
version: 0.9.1.2
synopsis: Squeal PostgreSQL Library
description: Squeal is a type-safe embedding of PostgreSQL in Haskell
homepage: https://github.com/morphismtech/squeal
Expand Down
5 changes: 3 additions & 2 deletions squeal-postgresql/src/Squeal/PostgreSQL/Session/Oid.hs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ module Squeal.PostgreSQL.Session.Oid
, OidOfField (..)
) where

import Control.Monad.Catch
import Control.Monad.Reader
import Control.Monad (when)
import Control.Monad.Catch (throwM)
import Control.Monad.Reader (ReaderT(ReaderT))
import Data.String
import GHC.TypeLits
import PostgreSQL.Binary.Decoding (valueParser, int)
Expand Down

0 comments on commit fa20d37

Please sign in to comment.