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/custom.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.221.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.221.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v0.4.0
[2/2] Update successful: https://deno.land/x/[email protected]/mod.ts -> v0.4.0

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

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

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

/home/runner/work/deno-itertools/deno-itertools/utils.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.221.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.221.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v0.4.0
[2/2] Update successful: https://deno.land/x/[email protected]/mod.ts -> v0.4.0

/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.221.0
[1/3] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.221.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.221.0
[2/3] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.221.0
[3/3] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[3/3] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v0.4.0
[3/3] Update successful: https://deno.land/x/[email protected]/mod.ts -> v0.4.0

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

/home/runner/work/deno-itertools/deno-itertools/more-itertools.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.221.0
[1/2] Update successful: https://deno.land/[email protected]/testing/bdd.ts -> 0.221.0
[2/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[2/2] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v0.4.0
[2/2] Update successful: https://deno.land/x/[email protected]/mod.ts -> v0.4.0

Successfully updated:
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.221.0
https://deno.land/x/[email protected]/mod.ts v0.3.0 -> v0.4.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.221.0
https://deno.land/x/[email protected]/mod.ts v0.3.0 -> v0.4.0
https://deno.land/[email protected]/testing/asserts.ts 0.186.0 -> 0.221.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.221.0
https://deno.land/x/[email protected]/mod.ts v0.3.0 -> v0.4.0
https://deno.land/[email protected]/testing/bdd.ts 0.186.0 -> 0.221.0
https://deno.land/x/[email protected]/mod.ts v0.3.0 -> v0.4.0
  • Loading branch information
lambdalisue committed Mar 28, 2024
1 parent e349d27 commit 77d8959
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions builtins.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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 { expect } from "https://deno.land/x/expect@v0.3.0/mod.ts";
import { assertThrows } from "https://deno.land/std@0.221.0/testing/asserts.ts";
import { describe, it } from "https://deno.land/std@0.221.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.4.0/mod.ts";
import {
all,
any,
Expand Down
4 changes: 2 additions & 2 deletions custom.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.3.0/mod.ts";
import { describe, it } from "https://deno.land/std@0.221.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.4.0/mod.ts";
import { compact, compactObject, flatmap } from "./custom.ts";
import { repeat } from "./itertools.ts";

Expand Down
4 changes: 2 additions & 2 deletions itertools.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.3.0/mod.ts";
import { describe, it } from "https://deno.land/std@0.221.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.4.0/mod.ts";
import { all, iter, range } from "./builtins.ts";
import {
chain,
Expand Down
4 changes: 2 additions & 2 deletions more-itertools.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from "https://deno.land/std@0.186.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.3.0/mod.ts";
import { describe, it } from "https://deno.land/std@0.221.0/testing/bdd.ts";
import { expect } from "https://deno.land/x/expect@v0.4.0/mod.ts";
import { range } from "./builtins.ts";
import { first } from "./custom.ts";
import {
Expand Down

0 comments on commit 77d8959

Please sign in to comment.