From 9a19bdb22ec2791aa7921f23c6206759ac2e2d0d Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 28 Apr 2021 21:43:13 +0100 Subject: [PATCH] chore: upgrade postgres driver to 0.11.2 --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index 202c1f5..31152e4 100644 --- a/deps.ts +++ b/deps.ts @@ -13,7 +13,7 @@ export { } from "https://deno.land/x/mysql@v2.8.0/mod.ts"; export type { LoggerConfig } from "https://deno.land/x/mysql@v2.8.0/mod.ts"; -export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.11.1/mod.ts"; +export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.11.2/mod.ts"; export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v2.3.1/mod.ts";