cloudcc-cli 1.4.2 → 1.4.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/README.md CHANGED
@@ -1,5 +1,12 @@
1
+ # ReleaseV1.4.3
2
+ #### 发布日期:2023-6-5
3
+ #### 发布范围:全量
4
+ #### 发布内容
5
+ * 修复
6
+ * 查找最新的版本是使用item.startsWith("V")判断
7
+
1
8
  # ReleaseV1.4.2
2
- #### 发布日期:
9
+ #### 发布日期:2023-5-30
3
10
  #### 发布范围:全量
4
11
  #### 发布内容
5
12
  * 迭代
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcc-cli",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "cloudcc-cli",
5
5
  "keywords": [
6
6
  "cloudcc",
package/utils/pushCode.js CHANGED
@@ -19,7 +19,7 @@ function getNewVersionName(types) {
19
19
  let versions = version.split("\n");
20
20
  // 取出第一个包含-V的版本号
21
21
  version = versions.find((item) => {
22
- return item.startsWith("V13");
22
+ return item.startsWith("V");
23
23
  })
24
24
  if (version) {
25
25
  // 取版本号