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

Commit f6c51ec

Browse files
jamesseanwrightReno Buildbot
authored and
Reno Buildbot
committed
[Reno Buildbot] Upgrades Deno to 1.18.2 and std to 0.123.0
1 parent 5b708d7 commit f6c51ec

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
@@ -2,7 +2,7 @@
22

33
![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png)
44

5-
[![Build status](https://github.com/reno-router/reno/workflows/CI/badge.svg)](https://github.com/reno-router/reno/actions) [![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].24/reno/mod.ts) [![Published on Nest.land](https://nest.land/badge.svg)](https://nest.land/package/reno)
5+
[![Build status](https://github.com/reno-router/reno/workflows/CI/badge.svg)](https://github.com/reno-router/reno/actions) [![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].25/reno/mod.ts) [![Published on Nest.land](https://nest.land/badge.svg)](https://nest.land/package/reno)
66

77
Reno is a thin routing library designed to sit on top of [Deno](https://deno.land/)'s [standard HTTP module](https://deno.land/std/http).
88

@@ -27,7 +27,7 @@ import {
2727
jsonResponse,
2828
MissingRouteError,
2929
streamResponse,
30-
} from "https://deno.land/x/[email protected].24/reno/mod.ts";
30+
} from "https://deno.land/x/[email protected].25/reno/mod.ts";
3131

3232
/* Alternatively, you can import Reno from nest.land:
3333
* import { ... } from "https://x.nest.land/[email protected]/reno/mod.ts";
@@ -93,7 +93,7 @@ await serve(
9393
This, along with request handlers being [pure functions](https://en.wikipedia.org/wiki/Pure_function), makes unit testing Reno services a breeze:
9494

9595
```ts
96-
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].24/reno/mod.ts";
96+
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].25/reno/mod.ts";
9797
import { createRonSwansonQuoteHandler } from "./routes.ts";
9898

9999
const createFetchStub = (response: string[]) =>
@@ -176,7 +176,7 @@ import {
176176
AugmentedRequest,
177177
RouteHandler,
178178
createRouteMap
179-
} from "https://deno.land/x/[email protected].24/reno/mod.ts";
179+
} from "https://deno.land/x/[email protected].25/reno/mod.ts";
180180

181181
import isValidAPIKey from "./api_keys.ts";
182182

@@ -235,11 +235,11 @@ Deno.test("/ should return the expected response", async () => {
235235

236236
## Example Apps
237237

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

240240
## API Documentation
241241

242-
Consult [Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].24/reno/mod.ts) for comprehensive documentation on Reno's API.
242+
Consult [Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].25/reno/mod.ts) for comprehensive documentation on Reno's API.
243243

244244
## Local Development
245245

deno_versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"deno": "1.18.1",
2+
"deno": "1.18.2",
33
"std": "0.123.0"
44
}

egg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reno",
33
"description": "A thin routing library designed to sit on top of Deno's standard HTTP module",
4-
"version": "2.0.24",
4+
"version": "2.0.25",
55
"repository": "https://github.com/reno-router/reno/",
66
"stable": true,
77
"files": [

0 commit comments

Comments
 (0)