@microtronics/studio-cli 0.29.2 → 0.29.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## 0.29.3 (2025-04-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **studio-cli:** use current dde version as reference to ([b07ab04](https://bitbucket.org/microtronics-core/vscode-studio/commits/b07ab04f97d560d8b51935b673088dc7b7c21ed4))
9
+
3
10
  ## 0.29.2 (2025-04-04)
4
11
 
5
12
  ## 0.29.1 (2025-04-03)
package/out/dde/dde.js CHANGED
@@ -198,7 +198,7 @@ var DDE;
198
198
  // find the previous version
199
199
  const previousVersion = appVersions.find(version => {
200
200
  // the appProfile is fetched with semver header true, therefore is the version.version a valid semver string.
201
- return !semver.prerelease(version.version) && semver.lt(version.version, currentVersion);
201
+ return !semver.prerelease(version.version) && semver.lte(version.version, currentVersion);
202
202
  });
203
203
  const versionFile = previousVersion?.files.find(file => file.name === 'dde.json');
204
204
  if (!versionFile) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.29.2",
3
+ "version": "0.29.3",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",