diff --git a/.bmp.yml b/.bmp.yml index 661dbb8..e508e9c 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 3.2.9 +version: 3.2.10 commit: Bump to version v%.%.% files: README.md: diff --git a/README.md b/README.md index e424f66..76d8bf2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# license-checker v3.2.9 +# license-checker v3.2.10 [![ci](https://github.com/kt3k/license-checker/actions/workflows/ci.yml/badge.svg)](https://github.com/kt3k/license-checker/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/kt3k/license-checker/branch/main/graph/badge.svg?token=pbV4Qsg70v)](https://codecov.io/gh/kt3k/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.9/main +deno run --allow-read jsr:@kt3k/license-checker@3.2.10/main ``` 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.9/main +deno run --allow-read jsr:@kt3k/license-checker@3.2.10/main ``` 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.9"; +import { checkLicense } from "jsr:@kt3k/license-checker@3.2.10"; ``` ## `checkLicense(configs: Config[], options: Options): Promise` diff --git a/deno.json b/deno.json index ef0941f..23ba84a 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "name": "@kt3k/license-checker", "description": "A utility for checking license headers in the files in a directory.", - "version": "3.2.9", + "version": "3.2.10", "exports": { ".": "./lib.ts", "./main": "./main.ts" diff --git a/dnt.ts b/dnt.ts index 0e1294f..3ab71eb 100644 --- a/dnt.ts +++ b/dnt.ts @@ -31,7 +31,7 @@ await build({ package: { // package.json properties name: "@kt3k/license-checker", - version: "3.2.9", + version: "3.2.10", description: "📄 CLI tool for checking license headers in files", license: "MIT", repository: { diff --git a/main.ts b/main.ts index 6c6f8c6..95a3621 100755 --- a/main.ts +++ b/main.ts @@ -98,7 +98,7 @@ Options: } if (opts.version) { - console.log("3.2.9"); + console.log("3.2.10"); Deno.exit(0); }