File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
![ Build Status] ( https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square )
4
4
[ ![ Discord server] ( https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square )] ( https://discord.gg/HEdTCvZUSf )
5
5
[ ![ 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.17.0 /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.1 /mod.ts )
7
7
[ ![ License] ( https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square )] ( LICENSE )
8
8
9
9
A lightweight PostgreSQL driver for Deno focused on user experience
@@ -16,7 +16,7 @@ A lightweight PostgreSQL driver for Deno focused on user experience
16
16
17
17
``` ts
18
18
// deno run --allow-net --allow-read mod.ts
19
- import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
19
+ import { Client } from " https://deno.land/x/postgres@v0.17.1 /mod.ts" ;
20
20
21
21
const client = new Client ({
22
22
user: " user" ,
Original file line number Diff line number Diff line change 3
3
![ Build Status] ( https://img.shields.io/github/workflow/status/denodrivers/postgres/ci?label=Build&logo=github&style=flat-square )
4
4
[ ![ Discord server] ( https://img.shields.io/discord/768918486575480863?color=blue&label=Ask%20for%20help%20here&logo=discord&style=flat-square )] ( https://discord.gg/HEdTCvZUSf )
5
5
![ 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.17.0 /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.1 /mod.ts )
7
7
![ License] ( https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square )
8
8
9
9
` deno-postgres ` is a lightweight PostgreSQL driver for Deno focused on user
10
10
experience. It provides abstractions for most common operations such as typed
11
11
queries, prepared statements, connection pools and transactions.
12
12
13
13
``` ts
14
- import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
14
+ import { Client } from " https://deno.land/x/postgres@v0.17.1 /mod.ts" ;
15
15
16
16
const client = new Client ({
17
17
user: " user" ,
@@ -38,7 +38,7 @@ All `deno-postgres` clients provide the following options to authenticate and
38
38
manage your connections
39
39
40
40
``` ts
41
- import { Client } from " https://deno.land/x/postgres@v0.17.0 /mod.ts" ;
41
+ import { Client } from " https://deno.land/x/postgres@v0.17.1 /mod.ts" ;
42
42
43
43
let config;
44
44
You can’t perform that action at this time.
0 commit comments