From 38cc0ad92530e3b0eb44a757c6faca32424b74de Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Mon, 26 Aug 2024 17:51:16 +0900 Subject: [PATCH] 0.1.20 --- .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 26f2147..cee5a1f 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 0.1.19 +version: 0.1.20 commit: '%.%.%' files: README.md: '@deno/bump-workspaces@%.%.%' diff --git a/README.md b/README.md index ad80360..b60aa4d 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.19/cli --dry-run +deno run -A jsr:@deno/bump-workspaces@0.1.20/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.19/cli + deno run -A jsr:@deno/bump-workspaces@0.1.20/cli env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} ``` diff --git a/deno.json b/deno.json index 3af29db..f0a7b78 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ ".": "./mod.ts", "./cli": "./cli.ts" }, - "version": "0.1.19", + "version": "0.1.20", "tasks": { "test": "deno test -A", "cov": "rm -rf coverage && deno test -A --coverage && deno coverage --html && deno coverage --lcov --output=coverage/lcov.info",