ovsx 0.8.0 → 0.8.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 +9 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This change log covers only the command line interface (CLI) of Open VSX.
|
|
4
4
|
|
|
5
|
+
### v0.8.1 (May. 2023)
|
|
6
|
+
|
|
7
|
+
#### Dependencies
|
|
8
|
+
|
|
9
|
+
- Added explicit dependency to `semver` ([#733](https://github.com/eclipse/openvsx/pull/733))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
5
13
|
### v0.8.0 (Jan. 2023)
|
|
6
14
|
|
|
7
15
|
#### New Features
|
|
@@ -9,7 +17,7 @@ This change log covers only the command line interface (CLI) of Open VSX.
|
|
|
9
17
|
- Added CLI parameter `--skip-duplicate` to fail silently if version already exists on the marketplace ([#646](https://github.com/eclipse/openvsx/pull/646))
|
|
10
18
|
|
|
11
19
|
---
|
|
12
|
-
|
|
20
|
+
|
|
13
21
|
### v0.7.1 (Dec. 2022)
|
|
14
22
|
|
|
15
23
|
#### Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ovsx",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Command line interface for Eclipse Open VSX",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"follow-redirects": "^1.14.6",
|
|
42
42
|
"is-ci": "^2.0.0",
|
|
43
43
|
"leven": "^3.1.0",
|
|
44
|
+
"semver": "^5.1.0",
|
|
44
45
|
"tmp": "^0.2.1"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|