diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94b14f3..0143414 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ name: CI env: - DENO_VERSION: 1.26.0 + DENO_VERSION: 1.26.2 on: push: diff --git a/.github/workflows/publish_docker.yml b/.github/workflows/publish_docker.yml index 48fe7d5..bcb1e53 100644 --- a/.github/workflows/publish_docker.yml +++ b/.github/workflows/publish_docker.yml @@ -1,7 +1,7 @@ name: Publish Docker env: - DENO_VERSION: 1.26.0 + DENO_VERSION: 1.26.2 on: release: diff --git a/.github/workflows/publish_nest.yml b/.github/workflows/publish_nest.yml index 7897bba..673ff72 100644 --- a/.github/workflows/publish_nest.yml +++ b/.github/workflows/publish_nest.yml @@ -1,7 +1,7 @@ name: Publish Egg env: - DENO_VERSION: 1.26.0 + DENO_VERSION: 1.26.2 NEST_VERSION: 0.3.10 on: diff --git a/CHANGELOG.md b/CHANGELOG.md index 703b481..cfd4e41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Nessie Change Log +## Version 2.0.9 - 2022-10-23 + +- Deno v1.26.2 +- Deno std v0.160.0 +- PostgreSQL v0.17.0 + ## Version 2.0.8 - 2022-10-06 - Deno v1.26.0 diff --git a/README.md b/README.md index 2d5de60..082eb24 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Docs - Deno Version + Deno Version GitHub Workflow Status (branch) diff --git a/deps.ts b/deps.ts index 736d793..7994f6a 100644 --- a/deps.ts +++ b/deps.ts @@ -6,18 +6,18 @@ export { relative, resolve, toFileUrl, -} from "https://deno.land/std@0.159.0/path/mod.ts"; +} from "https://deno.land/std@0.160.0/path/mod.ts"; export { assert, assertEquals, -} from "https://deno.land/std@0.159.0/testing/asserts.ts"; -export { exists } from "https://deno.land/std@0.159.0/fs/mod.ts"; -export { format } from "https://deno.land/std@0.159.0/datetime/mod.ts"; +} from "https://deno.land/std@0.160.0/testing/asserts.ts"; +export { exists } from "https://deno.land/std@0.160.0/fs/mod.ts"; +export { format } from "https://deno.land/std@0.160.0/datetime/mod.ts"; export { bold, green, yellow, -} from "https://deno.land/std@0.159.0/fmt/colors.ts"; +} from "https://deno.land/std@0.160.0/fmt/colors.ts"; /** Cliffy */ export { @@ -35,7 +35,7 @@ export { Client as MySQLClient } from "https://deno.land/x/mysql@v2.10.2/mod.ts" /** PostgreSQL */ export { Client as PostgreSQLClient, -} from "https://deno.land/x/postgres@v0.16.1/mod.ts"; +} from "https://deno.land/x/postgres@v0.17.0/mod.ts"; /** SQLite */ export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v3.5.0/mod.ts";