Skip to content

Commit 63d3d22

Browse files
authored
chore: bump release version in docs (#441)
1 parent d7b2b09 commit 63d3d22

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.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)
77
[![License](https://img.shields.io/github/license/denodrivers/postgres?color=yellowgreen&label=License&style=flat-square)](LICENSE)
88

99
A 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.17.0/mod.ts";
19+
import { Client } from "https://deno.land/x/postgres@v0.17.1/mod.ts";
2020

2121
const client = new Client({
2222
user: "user",

docs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
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.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)
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
1010
experience. It provides abstractions for most common operations such as typed
1111
queries, prepared statements, connection pools and transactions.
1212

1313
```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";
1515

1616
const client = new Client({
1717
user: "user",
@@ -38,7 +38,7 @@ All `deno-postgres` clients provide the following options to authenticate and
3838
manage your connections
3939

4040
```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";
4242

4343
let config;
4444

0 commit comments

Comments
 (0)