Skip to content

Commit 78fcd12

Browse files
authored
Merge pull request #100 from link-foundation/issue-99-bc78b28ed258
fix: correct license from MIT to Unlicense (public domain)
2 parents 50c2518 + da6df0e commit 78fcd12

5 files changed

Lines changed: 19 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,6 @@ The log file itself contains the raw command output and execution metadata.
358358

359359
## License
360360

361-
MIT
361+
[Unlicense](LICENSE) (public domain)
362+
363+
This project is released into the public domain under the Unlicense. It has fewer restrictions and more freedoms than MIT — especially for commercial use. You can copy, modify, publish, use, compile, sell, or distribute this software without any conditions or attribution requirements.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'start-command': patch
3+
---
4+
5+
fix: correct license field from MIT to Unlicense (public domain)
6+
7+
Updated `package.json` to correctly reflect the Unlicense (public domain) license instead of MIT. The project's `LICENSE` file has always contained the Unlicense text; this change aligns the metadata with the actual license.
8+
9+
Fixes #99

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"automation"
3333
],
3434
"author": "",
35-
"license": "MIT",
35+
"license": "Unlicense",
3636
"engines": {
3737
"bun": ">=1.0.0"
3838
},

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.14.0"
44
edition = "2021"
55
authors = ["Link Foundation"]
66
description = "Gamification of coding, execute any command with ability to auto-report issues on GitHub"
7-
license = "MIT"
7+
license = "Unlicense"
88
repository = "https://github.com/link-foundation/start"
99
homepage = "https://github.com/link-foundation/start#readme"
1010
keywords = ["cli", "command", "gamification", "github", "automation"]

rust/changelog.d/100.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fix: correct license field from MIT to Unlicense (public domain)
2+
3+
Updated `Cargo.toml` to correctly reflect the Unlicense (public domain) license instead of MIT. The project's `LICENSE` file has always contained the Unlicense text; this change aligns the metadata with the actual license.
4+
5+
Fixes #99

0 commit comments

Comments
 (0)