@microtronics/studio-cli 0.21.1 → 0.22.0

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
@@ -1,10 +1,17 @@
1
1
 
2
2
 
3
- ## 0.21.1 (2025-02-25)
3
+ ## 0.22.0 (2025-02-25)
4
4
 
5
5
 
6
- ### Bug Fixes
6
+ ### Features
7
7
 
8
+ * **studio-cli:** use semver api calls for `wynni` environment ([dcc6695](https://bitbucket.org/microtronics-core/vscode-studio/commits/dcc6695ecf7b76acea9d70f5d85b125167d4c874))
9
+
10
+ ## 0.21.1 (2025-02-25)
11
+
12
+
13
+ ### Bug Fixes
14
+
8
15
  * **studio-cli:** use correct env name `wynni` ([ac5f9c3](https://bitbucket.org/microtronics-core/vscode-studio/commits/ac5f9c3e32d212dab42a99ff228c243eaf4c001c))
9
16
 
10
17
  ## 0.21.0 (2025-02-25)
@@ -313,7 +313,7 @@ var Registry;
313
313
  * @param env
314
314
  */
315
315
  function headerBasedOnEnv(env) {
316
- if (env === globals_1.Globals.ENV.lucky) {
316
+ if ([globals_1.Globals.ENV.lucky, globals_1.Globals.ENV.wynni].includes(env)) {
317
317
  return { 'X-Semver': 'true' };
318
318
  }
319
319
  return {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.21.1",
3
+ "version": "0.22.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",