Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit a45ab48

Browse files
[Reno Buildbot] Upgrades Deno to 1.34.2 and std to 0.191.0 (#122)
Co-authored-by: jamesseanwright <[email protected]>
1 parent 9a35502 commit a45ab48

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png)
44

55
[![Build status](https://github.com/reno-router/reno/workflows/CI/badge.svg)](https://github.com/reno-router/reno/actions)
6-
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].103/reno/mod.ts)
6+
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].104/reno/mod.ts)
77

88
Reno is a thin routing library designed to sit on top of
99
[Deno](https://deno.land/)'s [standard HTTP module](https://deno.land/std/http).
@@ -29,7 +29,7 @@ import {
2929
jsonResponse,
3030
MissingRouteError,
3131
streamResponse,
32-
} from "https://deno.land/x/[email protected].103/reno/mod.ts";
32+
} from "https://deno.land/x/[email protected].104/reno/mod.ts";
3333

3434
const PORT = 8000;
3535

@@ -96,7 +96,7 @@ testing Reno services a breeze:
9696
import {
9797
assertResponsesAreEqual,
9898
jsonResponse,
99-
} from "https://deno.land/x/[email protected].103/reno/mod.ts";
99+
} from "https://deno.land/x/[email protected].104/reno/mod.ts";
100100
import { createRonSwansonQuoteHandler } from "./routes.ts";
101101

102102
const createFetchStub = (response: string[]) =>
@@ -191,7 +191,7 @@ import {
191191
AugmentedRequest,
192192
createRouteMap,
193193
RouteHandler,
194-
} from "https://deno.land/x/[email protected].103/reno/mod.ts";
194+
} from "https://deno.land/x/[email protected].104/reno/mod.ts";
195195

196196
import isValidAPIKey from "./api_keys.ts";
197197

@@ -256,15 +256,15 @@ Deno.test("/ should return the expected response", async () => {
256256
## Example Apps
257257

258258
As well as the
259-
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.103/example),
259+
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.104/example),
260260
which is targetted by the end-to-end test suite, there is a
261261
[standalone repository for a blog microservice](https://github.com/reno-router/blog-microservice)
262262
built with Deno, Reno, PostgreSQL, and Docker.
263263

264264
## API Documentation
265265

266266
Consult
267-
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].103/reno/mod.ts)
267+
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].104/reno/mod.ts)
268268
for comprehensive documentation on Reno's API.
269269

270270
## Local Development

deno_versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"deno": "1.34.1",
2+
"deno": "1.34.2",
33
"std": "0.191.0"
44
}

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.0.103",
2+
"version": "2.0.104",
33
"description": "This was originally an egg.json file for nest.land. Our approach for persisting the current version should be further simplified."
44
}

0 commit comments

Comments
 (0)