Skip to content

Commit

Permalink
dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j50n committed Sep 4, 2022
1 parent d88a415 commit b4a164c
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 17 deletions.
6 changes: 3 additions & 3 deletions deps-test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.146.0/testing/asserts.ts";
export * from "https://deno.land/x/[email protected].12/mod.ts";
export * from "https://deno.land/std@0.146.0/fmt/colors.ts";
export * from "https://deno.land/std@0.154.0/testing/asserts.ts";
export * from "https://deno.land/x/[email protected].13/mod.ts";
export * from "https://deno.land/std@0.154.0/fmt/colors.ts";
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.146.0/textproto/mod.ts";
export * from "https://deno.land/std@0.146.0/async/mod.ts";
export * from "https://deno.land/std@0.146.0/io/mod.ts";
export * from "https://deno.land/std@0.154.0/textproto/mod.ts";
export * from "https://deno.land/std@0.154.0/async/mod.ts";
export * from "https://deno.land/std@0.154.0/io/mod.ts";
4 changes: 2 additions & 2 deletions examples/pushiterable/example-of-pushiterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import { Answer, Question } from "./common-json-defs.ts";
import * as proc from "../../mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].12/mod.ts";
import { blue, red } from "https://deno.land/std@0.146.0/fmt/colors.ts";
import { asynciter } from "https://deno.land/x/[email protected].13/mod.ts";
import { blue, red } from "https://deno.land/std@0.154.0/fmt/colors.ts";

/**
* This demonstrates sending objects to and receiving objects from a child process
Expand Down
2 changes: 1 addition & 1 deletion examples/pushiterable/humanize-numbers.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S deno run --quiet
import "https://deno.land/x/[email protected]/romanNumerals.ts";
import "https://deno.land/x/[email protected]/numberToWords.ts";
import { asynciter } from "https://deno.land/x/[email protected].12/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].13/mod.ts";
import { bytesToTextLines, readerToBytesUnbuffered } from "../../mod.ts";
import { Answer, Question } from "./common-json-defs.ts";

Expand Down
2 changes: 1 addition & 1 deletion examples/shebang-hack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
":" //#; exec deno run "$0" "$@"
":"; //#; exec deno run "$0" "$@"

/**
* Basic shebang hack to run on Ubuntu 18.04 and prior.
Expand Down
2 changes: 1 addition & 1 deletion examples/warandpeace/countwords.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --quiet --allow-run=gunzip,sort,uniq,grep,wc

import { asynciter } from "https://deno.land/x/[email protected].12/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].13/mod.ts";
import * as proc from "../../mod.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/warandpeace/countwords2.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --quiet --allow-run=bash,gunzip

import { asynciter } from "https://deno.land/x/[email protected].12/mod.ts";
import { asynciter } from "https://deno.land/x/[email protected].13/mod.ts";
import * as proc from "../../mod.ts";

/* Chain errors. */
Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.19.7

- Updated dependencies.

## 0.19.6

- Updated dependencies.
Expand Down
2 changes: 1 addition & 1 deletion runners/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isWindows } from "https://deno.land/std@0.146.0/_util/os.ts";
import { isWindows } from "https://deno.land/std@0.154.0/_util/os.ts";

export const LINESEP: string = (() => {
if (isWindows) {
Expand Down
2 changes: 1 addition & 1 deletion runners/handlers/bytes.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.146.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.154.0/testing/asserts.ts";
import * as proc from "../../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion runners/utility.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BufReader, BufWriter } from "../deps.ts";
import * as path from "https://deno.land/std@0.146.0/path/mod.ts";
import * as path from "https://deno.land/std@0.154.0/path/mod.ts";

export const DEFAULT_BUFFER_SIZE = 4096;

Expand Down
2 changes: 1 addition & 1 deletion tests/line-split.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.146.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.154.0/testing/asserts.ts";
import * as proc from "../mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion tests/piped.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.146.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.154.0/testing/asserts.ts";
import * as proc from "../mod.ts";

Deno.test({
Expand Down

0 comments on commit b4a164c

Please sign in to comment.