Skip to content

Commit

Permalink
Update Deno and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoBernardino committed Feb 24, 2024
1 parent 293653d commit 1b899e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.39.3
deno-version: v1.41.0
- run: |
make test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It only has a _single method_: `parse(url: string)` which returns the same strin
### Deno

```ts
import shurley from 'https://deno.land/x/shurley@1.0.4/mod.ts';
import shurley from 'https://deno.land/x/shurley@1.0.5/mod.ts';

const parsedUrl = shurley.parse('example.com');

Expand Down
2 changes: 1 addition & 1 deletion build-npm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { build, emptyDir } from 'https://deno.land/x/dnt@0.39.0/mod.ts';
import { build, emptyDir } from 'https://deno.land/x/dnt@0.40.0/mod.ts';

await emptyDir('./npm');

Expand Down
2 changes: 1 addition & 1 deletion mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { equal } from 'https://deno.land/std@0.212.0/assert/equal.ts';
import { equal } from 'https://deno.land/std@0.217.0/assert/equal.ts';

import shurley from './mod.ts';

Expand Down

0 comments on commit 1b899e9

Please sign in to comment.