postgresql-syntax 0.4.1.2 → 0.4.1.3
raw patch · 4 files changed
+5/−5 lines, 4 filesdep ~text-builderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: text-builder
API changes (from Hackage documentation)
Files
- hedgehog-test/Main/Gen.hs +1/−1
- library/PostgresqlSyntax/Extras/HeadedMegaparsec.hs +1/−1
- library/PostgresqlSyntax/Rendering.hs +1/−1
- postgresql-syntax.cabal +2/−2
hedgehog-test/Main/Gen.hs view
@@ -822,7 +822,7 @@ iconstOrFconst = choice [Left <$> iconst <|> Right <$> fconst] fconst =- filter (\a -> fromIntegral (round a) /= a)+ filter (\a -> fromIntegral (round a :: Int) /= a) $ realFrac_ (Range.exponentialFloat 0 309457394857984375983475943) iconst = integral (Range.exponential 0 maxBound)
library/PostgresqlSyntax/Extras/HeadedMegaparsec.hs view
@@ -91,7 +91,7 @@ sepEnd1 sepP endP elP = do headEl <- elP let loop !list = do- sepP+ _ <- sepP asum [ do end <- endP
library/PostgresqlSyntax/Rendering.hs view
@@ -12,7 +12,7 @@ import qualified PostgresqlSyntax.Extras.NonEmpty as NonEmpty import PostgresqlSyntax.Extras.TextBuilder import PostgresqlSyntax.Prelude hiding (aExpr, bit, fromList, many, option, sortBy, try)-import TextBuilder hiding (char7, doubleDec, int64Dec, intDec)+import TextBuilder -- * Execution
postgresql-syntax.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: postgresql-syntax-version: 0.4.1.2+version: 0.4.1.3 category: Database, PostgreSQL, Parsing synopsis: PostgreSQL AST parsing and rendering description:@@ -90,7 +90,7 @@ megaparsec >=9.2 && <10, parser-combinators >=1.3 && <1.4, text >=1 && <3,- text-builder >=0.6.10 && <0.7,+ text-builder >=1 && <1.1, unordered-containers >=0.2.16 && <0.3, test-suite tasty-test