File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33![ Build Status] ( https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square )
44[ ![ Discord server] ( https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square )] ( https://discord.gg/HEdTCvZUSf )
55[ ![ Manual] ( https://img.shields.io/github/v/release/denodrivers/postgres?color=orange&label=Manual&logo=deno&style=flat-square )] ( https://deno-postgres.com )
6- [ ![ 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 )
6+ [ ![ 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.17.0 /mod.ts )
77[ ![ License] ( https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square )] ( LICENSE )
88
99A lightweight PostgreSQL driver for Deno focused on user experience
@@ -16,7 +16,7 @@ A lightweight PostgreSQL driver for Deno focused on user experience
1616
1717``` ts
1818// deno run --allow-net --allow-read mod.ts
19- import { Client } from " https://deno.land/x/postgres@v0.16.1 /mod.ts" ;
19+ import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
2020
2121const client = new Client ({
2222 user: " user" ,
Original file line number Diff line number Diff line change 33![ Build Status] ( https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square )
44[ ![ Discord server] ( https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square )] ( https://discord.gg/HEdTCvZUSf )
55![ Manual] ( https://img.shields.io/github/v/release/denodrivers/postgres?color=orange&label=Manual&logo=deno&style=flat-square )
6- [ ![ 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 )
6+ [ ![ 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.17.0 /mod.ts )
77![ License] ( https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square )
88
99` deno-postgres ` is a lightweight PostgreSQL driver for Deno focused on user
1010experience. It provides abstractions for most common operations such as typed
1111queries, prepared statements, connection pools and transactions.
1212
1313``` ts
14- import { Client } from " https://deno.land/x/postgres@v0.16.1 /mod.ts" ;
14+ import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
1515
1616const client = new Client ({
1717 user: " user" ,
@@ -38,7 +38,7 @@ All `deno-postgres` clients provide the following options to authenticate and
3838manage your connections
3939
4040``` ts
41- import { Client } from " https://deno.land/x/postgres@v0.16.1 /mod.ts" ;
41+ import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
4242
4343let config;
4444
You can’t perform that action at this time.
0 commit comments