Skip to content

Commit

Permalink
bump: 0.9.0 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Oct 19, 2022
1 parent 238f70d commit 4da2c22
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 17 deletions.
1 change: 0 additions & 1 deletion .denov

This file was deleted.

11 changes: 4 additions & 7 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,11 @@ on:
jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.label.name == 'CI start')
runs-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Deno
run: |
echo "DENO_VERSION=$(cat .denov)" >> $GITHUB_ENV
- uses: denolib/setup-deno@master
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ env.DENO_VERSION }}
deno-version: v1.x
- name: Run Tests
run: make test
2 changes: 1 addition & 1 deletion dlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as flags from "./vendor/https/deno.land/std/flags/mod.ts";
import { sprintf } from "./vendor/https/deno.land/std/fmt/printf.ts";
import { gray, green, red } from "./vendor/https/deno.land/std/fmt/colors.ts";
import * as util from "./_util.ts";
const VERSION = "0.8.9";
const VERSION = "0.9.0";

export type Module = {
version: string;
Expand Down
2 changes: 1 addition & 1 deletion modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.93.0",
"version": "@0.160.0",
"modules": [
"/fs/exists.ts",
"/path/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.93.0",
"version": "@0.160.0",
"modules": [
"/fs/exists.ts",
"/path/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/flags/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/flags/mod.ts";
export * from "https://deno.land/std@0.160.0/flags/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/fmt/colors.ts";
export * from "https://deno.land/std@0.160.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/printf.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/fmt/printf.ts";
export * from "https://deno.land/std@0.160.0/fmt/printf.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fs/exists.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/fs/exists.ts";
export * from "https://deno.land/std@0.160.0/fs/exists.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/path/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/path/mod.ts";
export * from "https://deno.land/std@0.160.0/path/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.93.0/testing/asserts.ts";
export * from "https://deno.land/std@0.160.0/testing/asserts.ts";

0 comments on commit 4da2c22

Please sign in to comment.