Skip to content

Commit

Permalink
[cb-#99] Merge branch 'master' into cb-#99
Browse files Browse the repository at this point in the history
  • Loading branch information
crookse committed Dec 21, 2019
2 parents e99dd0c + e6abcf9 commit 3881682
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -4,9 +4,9 @@ python:
- "3.6"

env:
- VER_DENO_LATEST="0.25.0"
VER_DENO_STD_LATEST="0.25.0"
VER_DRASH_LATEST="0.25.0"
- VER_DENO_LATEST="0.27.0"
VER_DENO_STD_LATEST="0.27.0"
VER_DRASH_LATEST="0.27.0"

install:
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v$VER_DENO_LATEST
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -10,7 +10,7 @@
<img src="https://img.shields.io/github/release/crookse/deno-drash.svg?color=bright_green&label=latest">
</a>
<a href="https://github.com/denoland/deno">
<img src="https://img.shields.io/badge/requires%20deno-v0.25.0-brightgreen.svg">
<img src="https://img.shields.io/badge/requires%20deno-v0.27.0-brightgreen.svg">
</a>
<a href="https://travis-ci.org/crookse/deno-drash">
<img src="https://img.shields.io/travis/crookse/deno-drash/master?label=master">
Expand All @@ -22,7 +22,7 @@
```typescript
// File: app.ts

import Drash from "https://deno.land/x/drash@v0.25.0/mod.ts";
import Drash from "https://deno.land/x/drash@v0.27.0/mod.ts";

class HomeResource extends Drash.Http.Resource {
static paths = ["/"];
Expand Down
9 changes: 9 additions & 0 deletions REQUIREMENTS.md
@@ -1,5 +1,14 @@
# Requirements

## v0.27.0

* Deno v0.27.0

## v0.26.0

* Deno v0.26.0


## v0.25.0

* Deno v0.25.0
Expand Down
8 changes: 4 additions & 4 deletions bump_versions.ts
Expand Up @@ -2,9 +2,9 @@
// const deno = Deno.env().VER_DENO_LATEST;
// const denoStd = Deno.env().VER_DENO_STD_LATEST;

const drash = "v0.25.0";
const deno = "0.25.0";
const denoStd = "0.25.0";
const drash = "v0.27.0";
const deno = "0.27.0";
const denoStd = "0.27.0";

const encoder = new TextEncoder();
const decoder = new TextDecoder("utf-8");
Expand All @@ -13,7 +13,7 @@ let text = "";
// Bump the versions in the README.md file
const readme = Deno.readFileSync("./README.md");
text = decoder.decode(readme);
text = text.replace(/drash@.*([0-9]([0-9])?\.?)*([0-9]([0-9])?\.?)/g, "drash@v" + drash);
text = text.replace(/drash@.*([0-9]([0-9])?\.?)*([0-9]([0-9])?\.?)/g, "drash@" + drash);
text = text.replace(/deno-v([0-9]([0-9])?\.?)*/g, "deno-v" + deno);
text = text.replace(/deno__std-v([0-9]([0-9])?\.?)*/g, "deno__std-v" + denoStd);
Deno.writeFileSync("./README.md", encoder.encode(text));
Expand Down
10 changes: 5 additions & 5 deletions deno_std.ts
@@ -1,22 +1,22 @@
export {
serve,
ServerRequest
} from "https://deno.land/std@v0.25.0/http/server.ts";
} from "https://deno.land/std@v0.27.0/http/server.ts";

export {
STATUS_TEXT,
Status
} from "https://deno.land/std@v0.25.0/http/http_status.ts";
} from "https://deno.land/std@v0.27.0/http/http_status.ts";

export {
walkSync
} from "https://deno.land/std@v0.25.0/fs/mod.ts";
} from "https://deno.land/std@v0.27.0/fs/mod.ts";

export {
runTests,
test
} from "https://deno.land/std@v0.25.0/testing/mod.ts";
} from "https://deno.land/std@v0.27.0/testing/mod.ts";

export {
assertEquals
} from "https://deno.land/std@v0.25.0/testing/asserts.ts";
} from "https://deno.land/std@v0.27.0/testing/asserts.ts";
4 changes: 2 additions & 2 deletions docs/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/public/assets/js/bundle.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/webpack.config.js
Expand Up @@ -3,9 +3,9 @@ const path = require("path");
const VueLoaderPlugin = require("vue-loader/lib/plugin");

// Versions
const latestRelease = "v0.25.0";
const denoVersion = "0.25.0";
const denoStdVersion = "0.25.0";
const latestRelease = "v0.27.0";
const denoVersion = "0.27.0";
const denoStdVersion = "0.27.0";

function getConf(envVars) {

Expand Down

0 comments on commit 3881682

Please sign in to comment.