diff --git a/REQUIREMENTS.md b/REQUIREMENTS.md index 64f1dcea1..472133099 100644 --- a/REQUIREMENTS.md +++ b/REQUIREMENTS.md @@ -1,8 +1,14 @@ # Requirements +* v1.0.2 + + * Deno v1.0.2 + * Deno Standard Modules v0.53.0 + * v1.0.1 * Deno v1.0.1 + * Deno Standard Modules v0.52.0 * v1.0.0 diff --git a/console/install_deno b/console/install_deno index 7029aacdb..02465bbd7 100755 --- a/console/install_deno +++ b/console/install_deno @@ -1,6 +1,6 @@ #!/bin/bash ( - export DENO_LATEST_VERSION="v1.0.1" + export DENO_LATEST_VERSION="v1.0.2" curl -fsSL https://deno.land/x/install/install.sh | sh -s $DENO_LATEST_VERSION ) diff --git a/console/typescript/bump_versions.ts b/console/typescript/bump_versions.ts index bfbd24974..851a0958e 100644 --- a/console/typescript/bump_versions.ts +++ b/console/typescript/bump_versions.ts @@ -18,6 +18,6 @@ async function bumpVersions(fromV: string, toV: string) { return depData; } -let result = await bumpVersions("v0.50.0", "v0.52.0"); +let result = await bumpVersions("v0.52.0", "v0.53.0"); console.log(result); diff --git a/deps.ts b/deps.ts index 10be72daf..4c19fd215 100644 --- a/deps.ts +++ b/deps.ts @@ -5,40 +5,40 @@ export { ServerRequest, serve, serveTLS, -} from "https://deno.land/std@v0.52.0/http/server.ts"; +} from "https://deno.land/std@v0.53.0/http/server.ts"; export { STATUS_TEXT, Status, -} from "https://deno.land/std@v0.52.0/http/http_status.ts"; +} from "https://deno.land/std@v0.53.0/http/http_status.ts"; export { assertEquals, assertThrows, -} from "https://deno.land/std@v0.52.0/testing/asserts.ts"; +} from "https://deno.land/std@v0.53.0/testing/asserts.ts"; export { BufReader, ReadLineResult, -} from "https://deno.land/std@v0.52.0/io/bufio.ts"; +} from "https://deno.land/std@v0.53.0/io/bufio.ts"; export { StringReader, -} from "https://deno.land/std@v0.52.0/io/readers.ts"; +} from "https://deno.land/std@v0.53.0/io/readers.ts"; export { FormFile, MultipartReader, -} from "https://deno.land/std@v0.52.0/mime/multipart.ts"; +} from "https://deno.land/std@v0.53.0/mime/multipart.ts"; export { Cookie, delCookie, getCookies, setCookie, -} from "https://deno.land/std@v0.50.0/http/cookie.ts"; +} from "https://deno.land/std@v0.53.0/http/cookie.ts"; export { red, green -} from "https://deno.land/std@0.52.0/fmt/colors.ts" +} from "https://deno.land/std@0.53.0/fmt/colors.ts" diff --git a/mod.ts b/mod.ts index b9a2ff74b..2ca7b2af5 100644 --- a/mod.ts +++ b/mod.ts @@ -44,12 +44,11 @@ import { StringService as BaseStringService } from "./src/services/string_servic export namespace Drash { /** * @description - * Drash version. Also represents what Deno version is - * supported. + * Drash version. Also represents what Deno version is supported. * * @property string version */ - export const version: string = "v1.0.1"; + export const version: string = "v1.0.2"; export namespace Compilers { export class TemplateEngine extends BaseTemplateEngine {} diff --git a/tests/unit/mod_test.ts b/tests/unit/mod_test.ts index 8d1ecbf20..bf13d54ff 100644 --- a/tests/unit/mod_test.ts +++ b/tests/unit/mod_test.ts @@ -95,5 +95,5 @@ members.test("mod_test.ts | Drash.addLogger(): names must be unique", () => { members.test("mod_test.ts | Drash.version: must be current version", () => { const version = members.Drash.version; - members.assert.equals(version, "v1.0.1"); + members.assert.equals(version, "v1.0.2"); });