Skip to content

Commit 8c58038

Browse files
committed
chore: Update license from MIT to Apache 2.0 across all packages and documentation
1 parent ab142ba commit 8c58038

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ const entry = await devlog.createDevlog({
193193

194194
## 📝 License
195195

196-
MIT License - see [LICENSE](LICENSE) file for details.
196+
Apache 2.0 License - see [LICENSE](LICENSE) file for details.
197197

198198
## 🤝 Contributing
199199

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"ai-assistant"
4242
],
4343
"author": "",
44-
"license": "MIT",
44+
"license": "Apache-2.0",
4545
"devDependencies": {
4646
"@types/node": "^20.0.0",
4747
"@vitest/coverage-v8": "2.1.9",

packages/ai/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,4 +351,4 @@ This package is part of the devlog monorepo ecosystem:
351351

352352
## License
353353

354-
MIT License - see LICENSE file for details.
354+
Apache 2.0 License - see LICENSE file for details.

packages/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"ai-evaluation"
3535
],
3636
"author": "Devlog Contributors",
37-
"license": "MIT",
37+
"license": "Apache-2.0",
3838
"dependencies": {
3939
"@devlog/core": "workspace:*",
4040
"commander": "^12.0.0",

packages/core/README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ updating, querying, and management of development logs.
2020
Devlog entries use a well-defined status system to track work progression:
2121

2222
**Open Statuses (Active Work):**
23+
2324
- `new` - Work ready to start
2425
- `in-progress` - Actively being developed
2526
- `blocked` - Temporarily stopped due to dependencies
26-
- `in-review` - Awaiting review/approval
27+
- `in-review` - Awaiting review/approval
2728
- `testing` - Being validated through testing
2829

2930
**Closed Statuses (Completed Work):**
31+
3032
- `done` - Successfully completed
3133
- `cancelled` - Abandoned/deprioritized
3234

@@ -62,21 +64,21 @@ const entry = await devlog.createDevlog({
6264
acceptanceCriteria: [
6365
'Users can register with email/password',
6466
'Users can login and receive JWT token',
65-
'Protected routes require valid token'
66-
]
67+
'Protected routes require valid token',
68+
],
6769
});
6870

6971
// Update the devlog
7072
await devlog.updateDevlog({
7173
id: entry.id,
7274
status: 'in-progress',
73-
progress: 'Completed user registration endpoint'
75+
progress: 'Completed user registration endpoint',
7476
});
7577

7678
// Add a note
7779
await devlog.addNote(entry.id, {
7880
category: 'progress',
79-
content: 'Fixed validation issues with email format'
81+
content: 'Fixed validation issues with email format',
8082
});
8183

8284
// List all devlogs
@@ -85,7 +87,7 @@ const allDevlogs = await devlog.listDevlogs();
8587
// Filter devlogs
8688
const inProgressTasks = await devlog.listDevlogs({
8789
status: ['in-progress'],
88-
type: ['feature', 'bugfix']
90+
type: ['feature', 'bugfix'],
8991
});
9092

9193
// Search devlogs
@@ -150,4 +152,4 @@ This core package is designed to be used by:
150152

151153
## License
152154

153-
MIT
155+
Apache 2.0

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"name": "Marvin Zhang",
3939
"email": "tikazyq@163.com"
4040
},
41-
"license": "MIT",
41+
"license": "Apache-2.0",
4242
"dependencies": {
4343
"better-sqlite3": "^11.0.0",
4444
"cheerio": "1.1.2",

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"ai-assistant"
4444
],
4545
"author": "",
46-
"license": "MIT",
46+
"license": "Apache-2.0",
4747
"dependencies": {
4848
"@devlog/core": "workspace:*",
4949
"@modelcontextprotocol/sdk": "^1.0.0",

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@
5454
"dashboard"
5555
],
5656
"author": "",
57-
"license": "MIT"
57+
"license": "Apache-2.0"
5858
}

0 commit comments

Comments
 (0)