remove: drop support for PostgreSQL 13

PostgreSQL 13 has been EOL since November 2025 and will not be available
in the next Nixpkgs bump anymore.
This commit is contained in:
Wolfgang Walther
2026-04-19 13:16:55 +00:00
parent 4ccb125e85
commit 1b74b93466
8 changed files with 21 additions and 34 deletions
+1 -5
View File
@@ -3,7 +3,6 @@
module PostgREST.Config.PgVersion
( PgVersion(..)
, minimumPgVersion
, pgVersion140
, pgVersion150
, pgVersion170
) where
@@ -25,10 +24,7 @@ instance Ord PgVersion where
-- | Tells the minimum PostgreSQL version required by this version of PostgREST
minimumPgVersion :: PgVersion
minimumPgVersion = pgVersion130
pgVersion130 :: PgVersion
pgVersion130 = PgVersion 130000 "13.0" "13.0"
minimumPgVersion = pgVersion140
pgVersion140 :: PgVersion
pgVersion140 = PgVersion 140000 "14.0" "14.0"