Skip to content

Commit 26e646e

Browse files
committed
Fix deno docs link in README.md
1 parent 8177273 commit 26e646e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OAuth2 Server
22

3-
[![version](https://img.shields.io/badge/release-0.6.0-success)](https://deno.land/x/oauth2_server@0.6.0)
4-
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.0/mod.ts)
3+
[![version](https://img.shields.io/badge/release-0.6.1-success)](https://deno.land/x/oauth2_server@0.6.1)
4+
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.1/authorization_server.ts)
55
[![CI](https://github.com/udibo/oauth2_server/workflows/CI/badge.svg)](https://github.com/udibo/oauth2_server/actions?query=workflow%3ACI)
66
[![codecov](https://codecov.io/gh/udibo/oauth2_server/branch/main/graph/badge.svg?token=8Q7TSUFWUY)](https://codecov.io/gh/udibo/oauth2_server)
77
[![license](https://img.shields.io/github/license/udibo/oauth2_server)](https://github.com/udibo/oauth2_server/blob/master/LICENSE)
@@ -44,19 +44,19 @@ also acting as an authorization server.
4444

4545
```ts
4646
// Import from Deno's third party module registry
47-
import { ResourceServer } from "https://deno.land/x/oauth2_server@0.6.0/resource_server.ts";
47+
import { ResourceServer } from "https://deno.land/x/oauth2_server@0.6.1/resource_server.ts";
4848
// Import from GitHub
49-
import { ResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.0/resource_server.ts";
49+
import { ResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.1/resource_server.ts";
5050
```
5151

5252
The AuthorizationServer is an extension of the ResourceServer, adding methods
5353
used by the authorize and token endpoints.
5454

5555
```ts
5656
// Import from Deno's third party module registry
57-
import { AuthorizationServer } from "https://deno.land/x/oauth2_server@0.6.0/authorization_server.ts";
57+
import { AuthorizationServer } from "https://deno.land/x/oauth2_server@0.6.1/authorization_server.ts";
5858
// Import from GitHub
59-
import { AuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.0/authorization_server.ts";
59+
import { AuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.1/authorization_server.ts";
6060
```
6161

6262
## Usage
@@ -66,7 +66,7 @@ An example of how to use this module can be found
6666
but it should give you an idea of how to use this module.
6767

6868
See
69-
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.0/authorization_server.ts)
69+
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.1/authorization_server.ts)
7070
for more information.
7171

7272
### Grants

adapters/oak/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ also acting as an authorization server.
2020

2121
```ts
2222
// Import from Deno's third party module registry
23-
import { OakResourceServer } from "https://deno.land/x/oauth2_server@0.6.0/adapters/oak/resource_server.ts";
23+
import { OakResourceServer } from "https://deno.land/x/oauth2_server@0.6.1/adapters/oak/resource_server.ts";
2424
// Import from GitHub
25-
import { OakResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.0/adapters/oak/resource_server.ts";
25+
import { OakResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.1/adapters/oak/resource_server.ts";
2626
```
2727

2828
The AuthorizationServer is an extension of the ResourceServer, adding methods
2929
used by the authorize and token endpoints.
3030

3131
```ts
3232
// Import from Deno's third party module registry
33-
import { OakAuthorizationServer } from "https://deno.land/x/oauth2_server@0.6.0/adapters/oak/authorization_server.ts";
33+
import { OakAuthorizationServer } from "https://deno.land/x/oauth2_server@0.6.1/adapters/oak/authorization_server.ts";
3434
// Import from GitHub
35-
import { OakAuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.0/adapters/oak/authorization_server.ts";
35+
import { OakAuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.6.1/adapters/oak/authorization_server.ts";
3636
```
3737

3838
## Usage
@@ -42,5 +42,5 @@ An example of how to use this adapter module can be found
4242
but it should give you an idea of how to use this module.
4343

4444
See
45-
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.0/adapters/oak/authorization_server.ts)
45+
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.6.1/adapters/oak/authorization_server.ts)
4646
for more information.

0 commit comments

Comments
 (0)