airborne-devkit 0.9.0 → 0.11.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 CHANGED
@@ -2,6 +2,18 @@
2
2
  All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
3
3
 
4
4
  - - -
5
+ ## airborne_cli-v0.1.2 - 2025-10-17
6
+ #### Bug Fixes
7
+ - npm releases - (6d08891) - Yash Rajput
8
+
9
+ - - -
10
+
11
+ ## airborne_cli-v0.1.1 - 2025-10-17
12
+ #### Bug Fixes
13
+ - fix release pipeline - (9e0d102) - george.james
14
+
15
+ - - -
16
+
5
17
  ## airborne_cli-v0.1.0 - 2025-10-16
6
18
  #### Bug Fixes
7
19
  - node module dependancies corrected for npmjs - (0bb90db) - george.james
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airborne-devkit",
3
- "version": "0.9.0",
3
+ "version": "0.11.1",
4
4
  "description": "Cli for Airborne",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "commander": "14.0.1",
27
- "airborne-core-cli": "file:../airborne-core-cli"
27
+ "airborne-core-cli": "*"
28
28
  },
29
29
  "devDependencies": {
30
30
  "release-it": "^17.10.0"
package/src/index.js CHANGED
@@ -26,7 +26,7 @@ const program = new Command();
26
26
  program
27
27
  .name("airborne-devkit")
28
28
  .description("Command-line interface for Airborne operations")
29
- .version("1.0.0");
29
+ .version("0.11.1");
30
30
 
31
31
  coreCli.commands.forEach((cmd, i) => {
32
32
  if (cmd._name !== "PostLogin") {