Skip to content

Commit

Permalink
📦 Update Deno dependencies
Browse files Browse the repository at this point in the history
Update dependencies by udd:

/home/runner/work/deno-itertools/deno-itertools/mod.ts

/home/runner/work/deno-itertools/deno-itertools/more-itertools.test.ts
[1/2] Looking for releases: https://deno.land/[email protected]/testing/bdd.ts
[1/2] Attempting update: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Using latest: https://deno.land/x/[email protected]/mod.ts

/home/runner/work/deno-itertools/deno-itertools/itertools.test.ts
[1/2] Looking for releases: https://deno.land/[email protected]/testing/bdd.ts
[1/2] Attempting update: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Using latest: https://deno.land/x/[email protected]/mod.ts

/home/runner/work/deno-itertools/deno-itertools/custom.ts

/home/runner/work/deno-itertools/deno-itertools/utils.ts

/home/runner/work/deno-itertools/deno-itertools/types.ts

/home/runner/work/deno-itertools/deno-itertools/custom.test.ts
[1/2] Looking for releases: https://deno.land/[email protected]/testing/bdd.ts
[1/2] Attempting update: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Using latest: https://deno.land/x/[email protected]/mod.ts

/home/runner/work/deno-itertools/deno-itertools/more-itertools.ts

/home/runner/work/deno-itertools/deno-itertools/builtins.ts

/home/runner/work/deno-itertools/deno-itertools/itertools.ts

/home/runner/work/deno-itertools/deno-itertools/builtins.test.ts
[1/3] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts
[1/3] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.187.0
[1/3] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.187.0
[2/3] Looking for releases: https://deno.land/[email protected]/testing/bdd.ts
[2/3] Attempting update: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[2/3] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.187.0
[3/3] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[3/3] Using latest: https://deno.land/x/[email protected]/mod.ts

Already latest version:
https://deno.land/x/[email protected]/mod.ts == v0.3.0
https://deno.land/x/[email protected]/mod.ts == v0.3.0
https://deno.land/x/[email protected]/mod.ts == v0.3.0
https://deno.land/x/[email protected]/mod.ts == v0.3.0

Successfully updated:
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.187.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.187.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.187.0
https://deno.land/[email protected]/testing/asserts.ts 0.186.0 -> 0.187.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.187.0
  • Loading branch information
lambdalisue committed May 13, 2023
1 parent e349d27 commit 31fe262
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions builtins.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertThrows } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { assertThrows } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { describe, it } from "https://deno.land/std@0.187.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
import {
all,
Expand Down
2 changes: 1 addition & 1 deletion custom.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { describe, it } from "https://deno.land/std@0.187.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
import { compact, compactObject, flatmap } from "./custom.ts";
import { repeat } from "./itertools.ts";
Expand Down
2 changes: 1 addition & 1 deletion itertools.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { describe, it } from "https://deno.land/std@0.187.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
import { all, iter, range } from "./builtins.ts";
import {
Expand Down
2 changes: 1 addition & 1 deletion more-itertools.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { describe, it } from "https://deno.land/std@0.187.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
import { range } from "./builtins.ts";
import { first } from "./custom.ts";
Expand Down

0 comments on commit 31fe262

Please sign in to comment.