Skip to content

Commit 1f78840

Browse files
authored
chore: bump deno (#13)
1 parent 3e2729a commit 1f78840

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
# Should match TARGET_DENO_VERSION in src/version.ts
11-
DENO_VERSION: "v1.11.0"
11+
DENO_VERSION: "v1.11.1"
1212

1313
jobs:
1414
format:

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
2020

2121
### Changed
2222

23-
- Update target runtime (Deno) to v1.11.0 and dependencies (Deno Standard) to
24-
v0.98.0
23+
- Update target runtime (Deno) to v1.11.1 and dependencies (Deno Standard) to
24+
v0.99.0
2525
- Rewrite [README.md](./README.md)
2626
- Scripts (run program, scaffold new trivia source file, build executables) are
2727
now written in TS to be run with Deno

import_map.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"imports": {
3-
"std/": "https://deno.land/std@0.98.0/",
3+
"std/": "https://deno.land/std@0.99.0/",
44
"types": "./src/types.ts",
55
"helpers": "./src/helpers/mod.ts"
66
}

scripts/_utils.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { dirname, fromFileUrl } from "https://deno.land/std@0.98.0/path/mod.ts";
1+
import { dirname, fromFileUrl } from "https://deno.land/std@0.99.0/path/mod.ts";
22

3-
export { parse } from "https://deno.land/std@0.98.0/flags/mod.ts";
3+
export { parse } from "https://deno.land/std@0.99.0/flags/mod.ts";
44
export {
55
ensureDirSync,
66
existsSync,
7-
} from "https://deno.land/std@0.98.0/fs/mod.ts";
8-
export { grantOrThrow } from "https://deno.land/std@0.98.0/permissions/mod.ts";
7+
} from "https://deno.land/std@0.99.0/fs/mod.ts";
8+
export { grantOrThrow } from "https://deno.land/std@0.99.0/permissions/mod.ts";
99

1010
export const getPathToProjectRoot = (): string =>
1111
fromFileUrl(dirname(dirname(import.meta.url)));

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const SW_TRIVIA_VERSION = "0.13.0";
22

33
// Should match DENO_VERSION in .github/workflows/ci.yml
4-
const TARGET_DENO_VERSION = "1.11.0";
4+
const TARGET_DENO_VERSION = "1.11.1";
55

66
export function printVersion(): void {
77
console.log("Star Wars Trivia:", SW_TRIVIA_VERSION);

0 commit comments

Comments
 (0)