diff --git a/.bmp.yml b/.bmp.yml
index f0226d7..d138fd4 100644
--- a/.bmp.yml
+++ b/.bmp.yml
@@ -1,4 +1,4 @@
-version: 3.2.10
+version: 3.2.11
commit: Bump to version v%.%.%
files:
README.md:
diff --git a/README.md b/README.md
index 76d8bf2..c5d8f5d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# license-checker v3.2.10
+# license-checker v3.2.11
[![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.10/main
+deno run --allow-read jsr:@kt3k/license-checker@3.2.11/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.10/main
+deno run --allow-read jsr:@kt3k/license-checker@3.2.11/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.10";
+import { checkLicense } from "jsr:@kt3k/license-checker@3.2.11";
```
## `checkLicense(configs: Config[], options: Options): Promise`
diff --git a/dnt.ts b/dnt.ts
index 3ab71eb..2f9a18b 100644
--- a/dnt.ts
+++ b/dnt.ts
@@ -31,7 +31,7 @@ await build({
package: {
// package.json properties
name: "@kt3k/license-checker",
- version: "3.2.10",
+ version: "3.2.11",
description: "📄 CLI tool for checking license headers in files",
license: "MIT",
repository: {
diff --git a/jsr.json b/jsr.json
index 509d865..4a92432 100644
--- a/jsr.json
+++ b/jsr.json
@@ -1,6 +1,6 @@
{
"name": "@kt3k/license-checker",
- "version": "3.2.10",
+ "version": "3.2.11",
"exports": {
".": "./lib.ts",
"./main": "./main.ts"
diff --git a/main.ts b/main.ts
index 95a3621..6e76f62 100755
--- a/main.ts
+++ b/main.ts
@@ -98,7 +98,7 @@ Options:
}
if (opts.version) {
- console.log("3.2.10");
+ console.log("3.2.11");
Deno.exit(0);
}