Skip to content

Commit

Permalink
Merge pull request #166 from glmdev/master
Browse files Browse the repository at this point in the history
chore: update for deno 1.3.0 & std 0.67.0 (resolves #165)
  • Loading branch information
hayd committed Sep 4, 2020
2 parents ade873f + 4452fb0 commit f19e520
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,5 @@ export class Connection {
await this.bufWriter.write(terminationMessage);
await this.bufWriter.flush();
this.conn.close();
delete this.conn;
delete this.bufReader;
delete this.bufWriter;
delete this.packetWriter;
}
}
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export {
BufReader,
BufWriter,
} from "https://deno.land/std@0.63.0/io/bufio.ts";
export { copyBytes } from "https://deno.land/std@0.63.0/bytes/mod.ts";
} from "https://deno.land/std@0.67.0/io/bufio.ts";
export { copyBytes } from "https://deno.land/std@0.67.0/bytes/mod.ts";
export {
Deferred,
deferred,
} from "https://deno.land/std@0.63.0/async/deferred.ts";
export { createHash } from "https://deno.land/std@0.63.0/hash/mod.ts";
} from "https://deno.land/std@0.67.0/async/deferred.ts";
export { createHash } from "https://deno.land/std@0.67.0/hash/mod.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export {
assertStringContains,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.63.0/testing/asserts.ts";
} from "https://deno.land/std@0.67.0/testing/asserts.ts";

0 comments on commit f19e520

Please sign in to comment.