Skip to content

Commit

Permalink
fix: examples using incorrect branch for Oak.
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed Jun 23, 2020
1 parent d5e99b0 commit 1547b96
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

##聽[1.1.1] - 23-06-2020

- fix: examples using incorrect branch for Oak.

## [1.1.0] - 23-06-2020

- chore: update dependencies.
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": "1.1.0",
"version": "1.1.1",
"repository": "https://github.com/asos-craigmorten/superoak",
"stable": true,
"files": [
Expand Down
2 changes: 1 addition & 1 deletion examples/expect-body/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Application, Router } from "https://deno.land/x/oak@master/mod.ts";
import { Application, Router } from "https://deno.land/x/oak@v5.3.1/mod.ts";

const router = new Router();
router.get("/", (ctx) => {
Expand Down
2 changes: 1 addition & 1 deletion examples/repeated-assertions/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Application, Router } from "https://deno.land/x/oak@master/mod.ts";
import { Application, Router } from "https://deno.land/x/oak@v5.3.1/mod.ts";

const router = new Router();
const app = new Application();
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: string = "1.1.0";
export const VERSION: string = "1.1.1";

/**
* Supported versions of Deno.
Expand Down

0 comments on commit 1547b96

Please sign in to comment.