From f21af28f415425dd1667cad9d8a49d7236c49637 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 30 Jul 2024 13:07:11 +0900 Subject: [PATCH] 0.1.19 --- .bmp.yml | 2 +- README.md | 4 ++-- deno.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index b3f94fd..26f2147 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 0.1.18 +version: 0.1.19 commit: '%.%.%' files: README.md: '@deno/bump-workspaces@%.%.%' diff --git a/README.md b/README.md index 61ed291..ad80360 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Run this command with `--dry-run` flag in your Deno workspace-enabled project and see what this command does: ```sh -deno run -A jsr:@deno/bump-workspaces@0.1.18/cli --dry-run +deno run -A jsr:@deno/bump-workspaces@0.1.19/cli --dry-run ``` # How it works @@ -68,7 +68,7 @@ jobs: - name: Run workspaces version bump run: | git fetch --unshallow origin - deno run -A jsr:@deno/bump-workspaces@0.1.18/cli + deno run -A jsr:@deno/bump-workspaces@0.1.19/cli env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} ``` diff --git a/deno.json b/deno.json index a5b740b..3af29db 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ ".": "./mod.ts", "./cli": "./cli.ts" }, - "version": "0.1.18", + "version": "0.1.19", "tasks": { "test": "deno test -A", "cov": "rm -rf coverage && deno test -A --coverage && deno coverage --html && deno coverage --lcov --output=coverage/lcov.info",