@voodocs/cli 0.4.0 → 0.4.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.
- package/CHANGELOG.md +10 -0
- package/cli.py +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [0.4.1] - 2024-12-20
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- **Python version compatibility**: Changed CLI shebang from `python3.11` to `python3` to support Python 3.7+ installations
|
|
5
|
+
- Fixes "python3.11: not found" error on systems with Python 3.8, 3.9, 3.10, 3.12, 3.13, etc.
|
|
6
|
+
- CLI now works with any Python 3.7+ version (matches package.json requirement)
|
|
7
|
+
- No functional changes, only compatibility improvement
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
## [0.4.0] - 2024-12-20
|
|
2
12
|
|
|
3
13
|
### 🎉 Major Release: DarkArts - The World's First AI-Native Documentation Language
|
package/cli.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
2
|
"""@voodocs
|
|
3
3
|
module_purpose: "Main CLI entry point for VooDocs - command routing and argument parsing"
|
|
4
4
|
dependencies: [
|
|
@@ -8,7 +8,7 @@ dependencies: [
|
|
|
8
8
|
"darkarts.plugins.voodocs: Documentation generation"
|
|
9
9
|
]
|
|
10
10
|
assumptions: [
|
|
11
|
-
"Python 3.
|
|
11
|
+
"Python 3.7+ is installed",
|
|
12
12
|
"Script is executable (chmod +x)",
|
|
13
13
|
"npm/pnpm may create symlinks for global installs",
|
|
14
14
|
"lib/ directory is in package root"
|
package/package.json
CHANGED