@otalan/cli 1.0.1 → 1.0.2
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 +7 -0
- package/README.md +9 -0
- package/dist/bin.js +13 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.0.2 - 2026-05-04
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Add `otalan version`, `otalan --version`, and `otalan -v`.
|
|
10
|
+
- Show the installed CLI version in help output.
|
|
11
|
+
|
|
5
12
|
## 1.0.1 - 2026-05-04
|
|
6
13
|
|
|
7
14
|
### Changed
|
package/README.md
CHANGED
|
@@ -216,6 +216,15 @@ Example project config:
|
|
|
216
216
|
|
|
217
217
|
Shows the available commands.
|
|
218
218
|
|
|
219
|
+
### `otalan version`
|
|
220
|
+
|
|
221
|
+
Prints the installed CLI version.
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
otalan version
|
|
225
|
+
otalan --version
|
|
226
|
+
```
|
|
227
|
+
|
|
219
228
|
### `otalan login`
|
|
220
229
|
|
|
221
230
|
Saves the CI key and API base URL locally.
|