diff --git a/.bmp.yml b/.bmp.yml index 391d03d..c08f600 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,5 +1,5 @@ -version: 0.1.21 -commit: '%.%.%' +version: 0.1.22 +commit: "%.%.%" files: - README.md: '@deno/bump-workspaces@%.%.%' + README.md: "@deno/bump-workspaces@%.%.%" deno.json: '"version": "%.%.%"' diff --git a/README.md b/README.md index 4a6aa5b..7fe10a8 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.21/cli --dry-run +deno run -A jsr:@deno/bump-workspaces@0.1.22/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.21/cli + deno run -A jsr:@deno/bump-workspaces@0.1.22/cli env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} ``` diff --git a/deno.json b/deno.json index 00d8391..949ab68 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ ".": "./mod.ts", "./cli": "./cli.ts" }, - "version": "0.1.21", + "version": "0.1.22", "tasks": { "test": "deno test -A", "cov": "rm -rf coverage && deno test -A --coverage && deno coverage --html && deno coverage --lcov --output=coverage/lcov.info",