it-tools-mcp 3.2.0 → 3.2.3
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.
- package/README.dockerhub.md +1 -2
- package/README.md +10 -10
- package/package.json +1 -1
package/README.dockerhub.md
CHANGED
package/README.md
CHANGED
|
@@ -30,8 +30,7 @@ Add to your VS Code `settings.json`:
|
|
|
30
30
|
"it-tools": {
|
|
31
31
|
"command": "npx",
|
|
32
32
|
"args": [
|
|
33
|
-
"-
|
|
34
|
-
"wrenchpilot/it-tools-mcp"
|
|
33
|
+
"it-tools-mcp"
|
|
35
34
|
],
|
|
36
35
|
"env": {}
|
|
37
36
|
}
|
|
@@ -310,19 +309,20 @@ This project uses **Conventional Commits** for clear, consistent commit messages
|
|
|
310
309
|
|
|
311
310
|
**Version Management:**
|
|
312
311
|
|
|
313
|
-
-
|
|
312
|
+
- 🤖 **Automatic version bumping** - Git hooks automatically bump versions based on commit message types
|
|
314
313
|
- 🤖 **Automatic publishing** - CI/CD detects changes and publishes automatically
|
|
315
|
-
- 🏷️ **Git tags** - Created automatically based on
|
|
314
|
+
- 🏷️ **Git tags** - Created automatically based on conventional commit messages
|
|
316
315
|
|
|
317
316
|
**Examples:**
|
|
317
|
+
|
|
318
318
|
```bash
|
|
319
|
-
git commit -m "feat: add new encryption tool"
|
|
320
|
-
git commit -m "fix: resolve base64 decoding issue"
|
|
321
|
-
git commit -m "docs: improve README examples"
|
|
319
|
+
git commit -m "feat: add new encryption tool" # → minor version bump
|
|
320
|
+
git commit -m "fix: resolve base64 decoding issue" # → patch version bump
|
|
321
|
+
git commit -m "docs: improve README examples" # → patch version bump
|
|
322
|
+
git commit -m "feat!: breaking API change" # → major version bump
|
|
322
323
|
|
|
323
|
-
#
|
|
324
|
-
npm version
|
|
325
|
-
git commit -m "chore: bump version to v1.2.3"
|
|
324
|
+
# Version is automatically bumped and committed by git hooks
|
|
325
|
+
# No manual npm version commands needed!
|
|
326
326
|
git push
|
|
327
327
|
```
|
|
328
328
|
|