Skip to content

Commit f19e520

Browse files
authored
Merge pull request #166 from glmdev/master
chore: update for deno 1.3.0 & std 0.67.0 (resolves #165)
2 parents ade873f + 4452fb0 commit f19e520

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

connection.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,5 @@ export class Connection {
609609
await this.bufWriter.write(terminationMessage);
610610
await this.bufWriter.flush();
611611
this.conn.close();
612-
delete this.conn;
613-
delete this.bufReader;
614-
delete this.bufWriter;
615-
delete this.packetWriter;
616612
}
617613
}

deps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
export {
22
BufReader,
33
BufWriter,
4-
} from "https://deno.land/std@0.63.0/io/bufio.ts";
5-
export { copyBytes } from "https://deno.land/std@0.63.0/bytes/mod.ts";
4+
} from "https://deno.land/std@0.67.0/io/bufio.ts";
5+
export { copyBytes } from "https://deno.land/std@0.67.0/bytes/mod.ts";
66
export {
77
Deferred,
88
deferred,
9-
} from "https://deno.land/std@0.63.0/async/deferred.ts";
10-
export { createHash } from "https://deno.land/std@0.63.0/hash/mod.ts";
9+
} from "https://deno.land/std@0.67.0/async/deferred.ts";
10+
export { createHash } from "https://deno.land/std@0.67.0/hash/mod.ts";

test_deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export {
55
assertStringContains,
66
assertThrows,
77
assertThrowsAsync,
8-
} from "https://deno.land/std@0.63.0/testing/asserts.ts";
8+
} from "https://deno.land/std@0.67.0/testing/asserts.ts";

0 commit comments

Comments
 (0)