Skip to content

Commit 8cd234c

Browse files
committed
release: v2.1.0
1 parent e5b4b70 commit 8cd234c

4 files changed

Lines changed: 37 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on:
44
release:
55
types: [published]
66

7+
permissions:
8+
contents: write
9+
id-token: write
10+
attestations: write
11+
712
jobs:
813
publish:
914
runs-on: ubuntu-latest
10-
permissions:
11-
contents: write
1215
env:
1316
RUNNER_MIXPANEL_TOKEN: ${{ vars.RUNNER_MIXPANEL_TOKEN }}
1417
steps:
@@ -23,6 +26,11 @@ jobs:
2326
- run: pnpm run build
2427
- run: pnpm vsce package --no-dependencies -o extension.vsix
2528

29+
- uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3
30+
with:
31+
subject-name: ${{ github.event.release.name }}
32+
subject-path: ./extension.vsix
33+
2634
- name: Upload to GitHub Release
2735
uses: csexton/release-asset-action@3567794e918fa3068116688122a76cdeb57b5f09 # v3
2836
with:

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
> English|[简体中文](https://gitee.com/typed-sigterm/oi-runner-2/blob/main/CHANGELOG.zh-CN.md)
44
5+
## 2.1.0 (2025-10-19)
6+
7+
### 🚀 Features
8+
9+
- Support one-click import test cases from Online Judges
10+
- Add telemetry, see README for more details
11+
12+
### 🩹 Bug Fixes
13+
14+
- Fix the behavior of Remove Test Case button
15+
- Fix diff editor state confusion when switching between test cases
16+
- UI theme now follows the VS Code theme
17+
518
## 2.0.1 (2025-04-26)
619

720
### 🔥 Performance

CHANGELOG.zh-CN.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
> [English](https://github.com/typed-sigterm/oi-runner-2/blob/main/CHANGELOG.md)|简体中文
44
5+
## 2.1.0 (2025-10-19)
6+
7+
### 🚀 新功能
8+
9+
- 现在你可以一键从 OJ 拉取输入输出样例,无需复制粘贴
10+
- 添加遥测,详见 README
11+
12+
### 🩹 Bug 修复
13+
14+
- 修复删除测试样例按钮的行为
15+
- 修复在测试样例间切换时 diff 编辑器状态错乱的问题
16+
- UI 主题现在跟随 VS Code 主题
17+
518
## 2.0.1 (2025-04-26)
619

720
### 🔥 性能优化

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "oi-runner-2",
44
"displayName": "%extension.displayName%",
55
"type": "module",
6-
"version": "2.0.1",
6+
"version": "2.1.0",
77
"private": true,
88
"packageManager": "pnpm@10.9.0",
99
"description": "%extension.description%",

0 commit comments

Comments
 (0)