Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Dec 10, 2020
1 parent 5f013e6 commit f56ad16
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
- uses: actions/checkout@master
- uses: denolib/setup-deno@master
with:
deno-version: v1.5.0
deno-version: v1.6.0
- run: deno test -A
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export * as base64url from "https://deno.land/std@0.75.0/encoding/base64url.ts";
export * as base64url from "https://deno.land/std@0.80.0/encoding/base64url.ts";
export {
decodeString as convertHexToUint8Array,
encodeToString as convertUint8ArrayToHex,
} from "https://deno.land/std@0.75.0/encoding/hex.ts";
export { HmacSha256 } from "https://deno.land/std@0.75.0/hash/sha256.ts";
export { HmacSha512 } from "https://deno.land/std@0.75.0/hash/sha512.ts";
export { RSA } from "https://deno.land/x/[email protected].4/rsa.ts";
} from "https://deno.land/std@0.80.0/encoding/hex.ts";
export { HmacSha256 } from "https://deno.land/std@0.80.0/hash/sha256.ts";
export { HmacSha512 } from "https://deno.land/std@0.80.0/hash/sha512.ts";
export { RSA } from "https://deno.land/x/[email protected].6/rsa.ts";
6 changes: 3 additions & 3 deletions examples/example_deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { serve } from "https://deno.land/std@0.75.0/http/server.ts";
export { decode, encode } from "https://deno.land/std@0.75.0/encoding/utf8.ts";
export { dirname, fromFileUrl } from "https://deno.land/std@0.75.0/path/mod.ts";
export { serve } from "https://deno.land/std@0.80.0/http/server.ts";
export { decode, encode } from "https://deno.land/std@0.80.0/encoding/utf8.ts";
export { dirname, fromFileUrl } from "https://deno.land/std@0.80.0/path/mod.ts";
4 changes: 2 additions & 2 deletions tests/test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ export {
assertEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.75.0/testing/asserts.ts";
} from "https://deno.land/std@0.80.0/testing/asserts.ts";

export { dirname, fromFileUrl } from "https://deno.land/std@0.75.0/path/mod.ts";
export { dirname, fromFileUrl } from "https://deno.land/std@0.80.0/path/mod.ts";

0 comments on commit f56ad16

Please sign in to comment.