From d7547a9b97a2bd1579c7b18700ce1aa7f300cc0f Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Thu, 6 Jun 2024 20:19:21 +0900 Subject: [PATCH] 0.1.15 --- .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 183975c..7c4a1ef 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 0.1.14 +version: 0.1.15 commit: '%.%.%' files: README.md: '@deno/bump-workspaces@%.%.%' diff --git a/README.md b/README.md index 5f0b5f1..2e586c9 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.14/cli --dry-run +deno run -A jsr:@deno/bump-workspaces@0.1.15/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.14/cli + deno run -A jsr:@deno/bump-workspaces@0.1.15/cli env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} ``` diff --git a/deno.json b/deno.json index aab9e93..62ac73d 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ ".": "./mod.ts", "./cli": "./cli.ts" }, - "version": "0.1.14", + "version": "0.1.15", "tasks": { "test": "deno test -A", "cov": "rm -rf coverage && deno test -A --coverage && deno coverage --html && deno coverage --lcov --output=coverage/lcov.info",