Skip to content

Commit

Permalink
feat: support Deno 1.1.3, std 0.60.0 and consume SuperDeno 1.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed Jul 9, 2020
1 parent 1547b96 commit 253492f
Show file tree
Hide file tree
Showing 8 changed files with 242 additions and 210 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.2.0] - 09-07-2020

- feat: support Deno `1.1.3`, std `0.60.0` and consume SuperDeno `1.6.1`.

## [1.1.1] - 23-06-2020

- fix: examples using incorrect branch for Oak.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-egg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
- uses: actions/checkout@v2
- uses: denolib/setup-deno@master
with:
deno-version: 1.1.1
- run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.1.3/mod.ts
deno-version: 1.1.3
- run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.1.8/mod.ts
- run: |
export PATH="/home/runner/.deno/bin:$PATH"
eggs link --key ${NEST_LAND_KEY}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
deno-version: [1.1.1]
deno-version: [1.1.3]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export { Server } from "https://deno.land/std@0.58.0/http/server.ts";
export { Server } from "https://deno.land/std@0.60.0/http/server.ts";
export {
superdeno,
SuperDeno,
Test,
IRequest,
IResponse,
} from "https://deno.land/x/superdeno@1.4.0/mod.ts";
export { methods } from "https://deno.land/x/opine@0.12.0/mod.ts";
} from "https://deno.land/x/superdeno@1.6.1/mod.ts";
export { methods } from "https://deno.land/x/opine@0.18.0/mod.ts";
export {
getFreePort,
isFreePort,
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.1",
"version": "1.2.0",
"repository": "https://github.com/asos-craigmorten/superoak",
"stable": true,
"files": [
Expand Down
428 changes: 228 additions & 200 deletions lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Deliberately test bleeding edge to ensure compatibility with latest / upcoming
export * from "https://deno.land/x/oak@v5.3.1/mod.ts";
export { expect } from "https://deno.land/x/expect@285caf/mod.ts";
export { dirname, join } from "https://deno.land/std@0.58.0/path/mod.ts";
export { dirname, join } from "https://deno.land/std@0.60.0/path/mod.ts";
export { isFreePort } from "https://deno.land/x/free_port@v1.2.0/mod.ts";
4 changes: 2 additions & 2 deletions version.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* Version of SuperOak.
*/
export const VERSION: string = "1.1.1";
export const VERSION: string = "1.2.0";

/**
* Supported versions of Deno.
*/
export const DENO_SUPPORTED_VERSIONS: string[] = ["1.1.1"];
export const DENO_SUPPORTED_VERSIONS: string[] = ["1.1.3"];

0 comments on commit 253492f

Please sign in to comment.