From 7a776042314436725e80a2f084ea1ae8e7162d04 Mon Sep 17 00:00:00 2001 From: jamesseanwright Date: Sat, 27 May 2023 01:02:33 +0000 Subject: [PATCH] [Reno Buildbot] Upgrades Deno to 1.34.0 and std to 0.189.0 --- README.md | 12 ++++++------ deno_versions.json | 2 +- version.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 337f34a..d9619a1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png) [![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/reno@v2.0.99/reno/mod.ts) +[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/reno@v2.0.100/reno/mod.ts) 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). @@ -29,7 +29,7 @@ import { jsonResponse, MissingRouteError, streamResponse, -} from "https://deno.land/x/reno@v2.0.99/reno/mod.ts"; +} from "https://deno.land/x/reno@v2.0.100/reno/mod.ts"; const PORT = 8000; @@ -96,7 +96,7 @@ testing Reno services a breeze: import { assertResponsesAreEqual, jsonResponse, -} from "https://deno.land/x/reno@v2.0.99/reno/mod.ts"; +} from "https://deno.land/x/reno@v2.0.100/reno/mod.ts"; import { createRonSwansonQuoteHandler } from "./routes.ts"; const createFetchStub = (response: string[]) => @@ -191,7 +191,7 @@ import { AugmentedRequest, createRouteMap, RouteHandler, -} from "https://deno.land/x/reno@v2.0.99/reno/mod.ts"; +} from "https://deno.land/x/reno@v2.0.100/reno/mod.ts"; import isValidAPIKey from "./api_keys.ts"; @@ -256,7 +256,7 @@ Deno.test("/ should return the expected response", async () => { ## Example Apps As well as the -[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.99/example), +[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.100/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. @@ -264,7 +264,7 @@ built with Deno, Reno, PostgreSQL, and Docker. ## API Documentation Consult -[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/reno@v2.0.99/reno/mod.ts) +[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/reno@v2.0.100/reno/mod.ts) for comprehensive documentation on Reno's API. ## Local Development diff --git a/deno_versions.json b/deno_versions.json index 8ecf39f..e724ada 100644 --- a/deno_versions.json +++ b/deno_versions.json @@ -1,4 +1,4 @@ { - "deno": "1.33.4", + "deno": "1.34.0", "std": "0.189.0" } diff --git a/version.json b/version.json index 31493c6..b028541 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { - "version": "2.0.99", + "version": "2.0.100", "description": "This was originally an egg.json file for nest.land. Our approach for persisting the current version should be further simplified." }