diff --git a/.bmp.yml b/.bmp.yml index 9a11220..6f072f6 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 3.2.0 +version: 3.2.1 commit: Bump to version v%.%.% files: README.md: diff --git a/README.md b/README.md index 64366db..2d162c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# deno_license_checker v3.2.0 +# deno_license_checker v3.2.1 ![ci](https://github.com/kt3k/deno_license_checker/workflows/ci/badge.svg) [![codecov](https://codecov.io/gh/kt3k/deno_license_checker/branch/master/graph/badge.svg?token=pbV4Qsg70v)](https://codecov.io/gh/kt3k/deno_license_checker) @@ -13,7 +13,7 @@ configure which files should have which license texts with `.licenserc.json`. Use via Deno: ```shell -deno run --allow-read https://deno.land/x/license_checker@v3.2.0/main.ts +deno run --allow-read https://deno.land/x/license_checker@v3.2.1/main.ts ``` Use via npx: @@ -44,7 +44,7 @@ If you prefer not to install the command globally, you can also use the following commands: ```console -deno run --unstable --allow-read https://deno.land/x/license_checker@v3.2.0/main.ts +deno run --unstable --allow-read https://deno.land/x/license_checker@v3.2.1/main.ts ``` Alternatively @@ -139,7 +139,7 @@ Options: # API ```ts -import { checkLicense } from "https://deno.land/x/license_checker@v3.2.0/lib.ts"; +import { checkLicense } from "https://deno.land/x/license_checker@v3.2.1/lib.ts"; ``` ## `checkLicense(configs: Config[], options: Options): Promise` diff --git a/dnt.ts b/dnt.ts index 024bf1d..3880fe9 100644 --- a/dnt.ts +++ b/dnt.ts @@ -26,7 +26,7 @@ await build({ package: { // package.json properties name: "@kt3k/license-checker", - version: "3.2.0", + version: "3.2.1", description: "📄 CLI tool for checking license headers in files", license: "MIT", repository: { diff --git a/main.ts b/main.ts index da5a8e9..1333cdb 100755 --- a/main.ts +++ b/main.ts @@ -72,7 +72,7 @@ Options: } if (opts.version) { - console.log("3.2.0"); + console.log("3.2.1"); exit(0); }