From 8a07131efa17f4a6bcab86fd81407f149de93449 Mon Sep 17 00:00:00 2001 From: Nicolas Guerrero Date: Tue, 7 Jun 2022 17:43:04 -0500 Subject: [PATCH] 0.16.1 --- README.md | 4 ++-- docs/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 67bc9268..1301454c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![Build Status](https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square) [![Discord server](https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square)](https://discord.gg/HEdTCvZUSf) [![Manual](https://img.shields.io/github/v/release/denodrivers/postgres?color=orange&label=Manual&logo=deno&style=flat-square)](https://deno-postgres.com) -[![Documentation](https://img.shields.io/github/v/release/denodrivers/postgres?color=yellow&label=Documentation&logo=deno&style=flat-square)](https://doc.deno.land/https/deno.land/x/postgres@v0.16.0/mod.ts) +[![Documentation](https://img.shields.io/github/v/release/denodrivers/postgres?color=yellow&label=Documentation&logo=deno&style=flat-square)](https://doc.deno.land/https/deno.land/x/postgres@v0.16.1/mod.ts) [![License](https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square)](LICENSE) A lightweight PostgreSQL driver for Deno focused on user experience @@ -16,7 +16,7 @@ A lightweight PostgreSQL driver for Deno focused on user experience ```ts // deno run --allow-net --allow-read mod.ts -import { Client } from "https://deno.land/x/postgres@v0.16.0/mod.ts"; +import { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts"; const client = new Client({ user: "user", diff --git a/docs/README.md b/docs/README.md index a25e18cb..ab29561b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -3,7 +3,7 @@ ![Build Status](https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square) [![Discord server](https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square)](https://discord.gg/HEdTCvZUSf) ![Manual](https://img.shields.io/github/v/release/denodrivers/postgres?color=orange&label=Manual&logo=deno&style=flat-square) -[![Documentation](https://img.shields.io/github/v/release/denodrivers/postgres?color=yellow&label=Documentation&logo=deno&style=flat-square)](https://doc.deno.land/https/deno.land/x/postgres@v0.16.0/mod.ts) +[![Documentation](https://img.shields.io/github/v/release/denodrivers/postgres?color=yellow&label=Documentation&logo=deno&style=flat-square)](https://doc.deno.land/https/deno.land/x/postgres@v0.16.1/mod.ts) ![License](https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square) `deno-postgres` is a lightweight PostgreSQL driver for Deno focused on user @@ -11,7 +11,7 @@ experience. It provides abstractions for most common operations such as typed queries, prepared statements, connection pools and transactions. ```ts -import { Client } from "https://deno.land/x/postgres@v0.16.0/mod.ts"; +import { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts"; const client = new Client({ user: "user", @@ -38,7 +38,7 @@ All `deno-postgres` clients provide the following options to authenticate and manage your connections ```ts -import { Client } from "https://deno.land/x/postgres@v0.16.0/mod.ts"; +import { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts"; let config;