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

Commit

Permalink
[Reno Buildbot] Upgrades Deno to 1.34.0 and std to 0.189.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesseanwright authored and Reno Buildbot committed May 27, 2023
1 parent 3c24139 commit 7a77604
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].99/reno/mod.ts)
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].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).
Expand All @@ -29,7 +29,7 @@ import {
jsonResponse,
MissingRouteError,
streamResponse,
} from "https://deno.land/x/[email protected].99/reno/mod.ts";
} from "https://deno.land/x/[email protected].100/reno/mod.ts";

const PORT = 8000;

Expand Down Expand Up @@ -96,7 +96,7 @@ testing Reno services a breeze:
import {
assertResponsesAreEqual,
jsonResponse,
} from "https://deno.land/x/[email protected].99/reno/mod.ts";
} from "https://deno.land/x/[email protected].100/reno/mod.ts";
import { createRonSwansonQuoteHandler } from "./routes.ts";

const createFetchStub = (response: string[]) =>
Expand Down Expand Up @@ -191,7 +191,7 @@ import {
AugmentedRequest,
createRouteMap,
RouteHandler,
} from "https://deno.land/x/[email protected].99/reno/mod.ts";
} from "https://deno.land/x/[email protected].100/reno/mod.ts";

import isValidAPIKey from "./api_keys.ts";

Expand Down Expand Up @@ -256,15 +256,15 @@ 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.

## API Documentation

Consult
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].99/reno/mod.ts)
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].100/reno/mod.ts)
for comprehensive documentation on Reno's API.

## Local Development
Expand Down
2 changes: 1 addition & 1 deletion deno_versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"deno": "1.33.4",
"deno": "1.34.0",
"std": "0.189.0"
}
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -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."
}

0 comments on commit 7a77604

Please sign in to comment.