Skip to content

Commit

Permalink
Bump to version v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Oct 31, 2022
1 parent 87fea62 commit 03d14f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.0
version: 3.2.1
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/deno_license_checker/master/media/deno_license_checker.png" width="100">

# 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)
Expand All @@ -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/[email protected].0/main.ts
deno run --allow-read https://deno.land/x/[email protected].1/main.ts
```

Use via npx:
Expand Down Expand Up @@ -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/[email protected].0/main.ts
deno run --unstable --allow-read https://deno.land/x/[email protected].1/main.ts
```

Alternatively
Expand Down Expand Up @@ -139,7 +139,7 @@ Options:
# API

```ts
import { checkLicense } from "https://deno.land/x/[email protected].0/lib.ts";
import { checkLicense } from "https://deno.land/x/[email protected].1/lib.ts";
```

## `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 @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Options:
}

if (opts.version) {
console.log("3.2.0");
console.log("3.2.1");
exit(0);
}

Expand Down

0 comments on commit 03d14f5

Please sign in to comment.