@gesslar/licensed 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
  3. package/src/lib.js +1 -1
package/README.md CHANGED
@@ -53,7 +53,7 @@ The returned object has the following shape:
53
53
  name: "my-package", // package name, or null
54
54
  license: "MIT", // SPDX license identifier, or null
55
55
  licenseFile: "LICENSE.txt", // detected license filename, or null
56
- publicDomain: false, // true for Unlicense, 0BSD, CC0-1.0, MIT-0
56
+ publicDomain: false, // true for Unlicense, CC0-1.0
57
57
  dependencies: [
58
58
  { name: "lodash", license: "MIT", repo: "https://github.com/lodash/lodash" },
59
59
  { name: "private-pkg", license: "Unknown", repo: null },
@@ -93,7 +93,7 @@ const markdown = buildLicenseSection({
93
93
 
94
94
  ## License
95
95
 
96
- `@gesslar/licensed` is released into the public domain under the [0BSD](LICENSE.txt).
96
+ `@gesslar/licensed` is released under the [0BSD](LICENSE.txt).
97
97
 
98
98
  This package includes or depends on third-party components under their own
99
99
  licenses:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gesslar/licensed",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "CLI and library for generating license sections in README.md",
5
5
  "repository": {
6
6
  "type": "git",
package/src/lib.js CHANGED
@@ -4,7 +4,7 @@ import {promisify} from "node:util"
4
4
 
5
5
  const exec = promisify(execFile)
6
6
 
7
- const PUBLIC_DOMAIN = ["Unlicense", "0BSD", "CC0-1.0", "MIT-0"]
7
+ const PUBLIC_DOMAIN = ["Unlicense", "CC0-1.0"]
8
8
 
9
9
  /**
10
10
  * Cleans a repository URL to a normalized HTTPS form.