From 05600eb507e8ad30dee2535c7e3ad895c7d2fde2 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Mon, 4 Mar 2024 14:48:43 +0900 Subject: [PATCH] Bump to version v3.2.6 --- .bmp.yml | 2 +- README.md | 8 ++++---- deno.json | 2 +- dnt.ts | 2 +- main.ts | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index 5b26dfc..1a12d8c 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 3.2.5 +version: 3.2.6 commit: Bump to version v%.%.% files: README.md: diff --git a/README.md b/README.md index a76fb16..da25ad3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# license-checker v3.2.5 +# license-checker v3.2.6 ![ci](https://github.com/kt3k/deno_license_checker/workflows/ci/badge.svg) [![codecov](https://codecov.io/gh/kt3k/deno_license_checker/branch/main/graph/badge.svg?token=pbV4Qsg70v)](https://codecov.io/gh/kt3k/deno_license_checker) @@ -12,7 +12,7 @@ A utility for checking license headers in the files in a directory. Use via Deno: ```shell -deno run --allow-read jsr:@kt3k/license-checker@3.2.5 +deno run --allow-read jsr:@kt3k/license-checker@3.2.6 ``` Use via npx: @@ -34,7 +34,7 @@ Create `.licenserc.json` like the following: Then run: ```console -deno run --allow-read jsr:@kt3k/license-checker@3.2.5 +deno run --allow-read jsr:@kt3k/license-checker@3.2.6 ``` This checks the license lines in the files under the current directory. @@ -125,7 +125,7 @@ Options: # API ```ts -import { checkLicense } from "jsr:@kt3k/license-checker@3.2.5/lib"; +import { checkLicense } from "jsr:@kt3k/license-checker@3.2.6/lib"; ``` ## `checkLicense(configs: Config[], options: Options): Promise` diff --git a/deno.json b/deno.json index e29cf39..ec5d519 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@kt3k/license-checker", - "version": "3.2.5", + "version": "3.2.6", "exports": { ".": "./lib.ts", "./main": "./main.ts" diff --git a/dnt.ts b/dnt.ts index 9cd2614..70f3391 100644 --- a/dnt.ts +++ b/dnt.ts @@ -31,7 +31,7 @@ await build({ package: { // package.json properties name: "@kt3k/license-checker", - version: "3.2.5", + version: "3.2.6", description: "📄 CLI tool for checking license headers in files", license: "MIT", repository: { diff --git a/main.ts b/main.ts index 829e3e9..231e4e0 100755 --- a/main.ts +++ b/main.ts @@ -95,7 +95,7 @@ Options: } if (opts.version) { - console.log("3.2.5"); + console.log("3.2.6"); Deno.exit(0); }