Skip to content

Commit

Permalink
Bump to version v3.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Mar 4, 2024
1 parent 2559f5b commit a660af7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 3.2.10
version: 3.2.11
commit: Bump to version v%.%.%
files:
README.md:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://raw.githubusercontent.com/kt3k/license-checker/main/.github/logo.svg" width="300">

# 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)
Expand All @@ -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:
Expand All @@ -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.
Expand Down Expand Up @@ -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<boolean>`
Expand Down
2 changes: 1 addition & 1 deletion dnt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kt3k/license-checker",
"version": "3.2.10",
"version": "3.2.11",
"exports": {
".": "./lib.ts",
"./main": "./main.ts"
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Options:
}

if (opts.version) {
console.log("3.2.10");
console.log("3.2.11");
Deno.exit(0);
}

Expand Down

0 comments on commit a660af7

Please sign in to comment.