Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cmorten committed Jan 28, 2024
1 parent 0ec093f commit 2bd53a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Version of SuperOak.
*/
export const VERSION = "4.8.0";
export const VERSION = "4.8.1";

/**
* Supported versions of Deno.
Expand Down

0 comments on commit 2bd53a8

Please sign in to comment.