Skip to content

Commit 533e32e

Browse files
committed
chore: require vscode 1.102.0+
1 parent bc89516 commit 533e32e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Current File Path for Visual Studio Code
22

33
![](https://img.shields.io/badge/Release-v4.0.0-blue.svg?style=flat-square)
4-
![](https://img.shields.io/badge/vscode-^1.70.0-blue.svg?style=flat-square)
4+
![](https://img.shields.io/badge/vscode-^1.102.0-blue.svg?style=flat-square)
55
[![CI](https://github.com/yoshinorin/vscode-current-file-path-extension/actions/workflows/ci.yaml/badge.svg)](https://github.com/yoshinorin/vscode-current-file-path-extension/actions/workflows/ci.yaml)
66

77
Visual Studio Code extension. This extension displays a current file path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.
@@ -39,7 +39,7 @@ Visual Studio Code extension. This extension displays a current file path from a
3939

4040
## Requirements
4141

42-
* Visual Studio Code 1.70.0 later
42+
* Visual Studio Code 1.102.0 later
4343
* Linux will probably have to install [xsel](https://linux.die.net/man/1/xsel).
4444
* e.g.) Debian/Ubuntu `sudo apt install xsel`
4545

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"engines": {
1616
"node": ">=22",
1717
"npm": ">=10",
18-
"vscode": "^1.70.0"
18+
"vscode": "^1.102.0"
1919
},
2020
"categories": [
2121
"Other"

src/test/runMinSupportVersionTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ async function main() {
88
// https://github.com/microsoft/vscode/issues/86382
99
const tmpDir = path.resolve(__dirname, "..", "../testTmp");
1010

11-
// v1.70.0 test
12-
const vscodeExecutablePath = await downloadAndUnzipVSCode("1.70.0");
11+
// v1.102.0 test
12+
const vscodeExecutablePath = await downloadAndUnzipVSCode("1.102.0");
1313
try {
1414
await runTests({
1515
vscodeExecutablePath,

0 commit comments

Comments
 (0)