From 2bd53a817335ba64ed41e73b85ca7df8d801f094 Mon Sep 17 00:00:00 2001 From: cmorten Date: Sun, 28 Jan 2024 18:49:32 +0000 Subject: [PATCH] chore: version bump --- README.md | 4 ++-- egg.json | 2 +- version.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 765beb0..abd9dc4 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ import { superoak } from "https://deno.land/x/superoak/mod.ts"; SuperOak is also available on [nest.land](https://nest.land/package/superoak), a package registry for Deno on the Blockchain. -> Note: All examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as `https://deno.land/x/superoak@4.8.0/mod.ts`. +> Note: Some examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as `https://deno.land/x/superoak@4.8.1/mod.ts`. ## Example @@ -78,7 +78,7 @@ built-in test framework. ```ts import { Application, Router } from "https://deno.land/x/oak@v12.6.2/mod.ts"; -import { superoak } from "https://deno.land/x/superoak@4.8.0/mod.ts"; +import { superoak } from "https://deno.land/x/superoak@4.8.1/mod.ts"; const router = new Router(); router.get("/", (ctx) => { diff --git a/egg.json b/egg.json index a466972..c4a999f 100644 --- a/egg.json +++ b/egg.json @@ -1,7 +1,7 @@ { "name": "superoak", "description": "HTTP assertions for Oak made easy via SuperDeno.", - "version": "4.8.0", + "version": "4.8.1", "repository": "https://github.com/cmorten/superoak", "stable": true, "checkFormat": false, diff --git a/version.ts b/version.ts index 09d3179..402f201 100644 --- a/version.ts +++ b/version.ts @@ -1,7 +1,7 @@ /** * Version of SuperOak. */ -export const VERSION = "4.8.0"; +export const VERSION = "4.8.1"; /** * Supported versions of Deno.