Skip to content

Commit 344ef28

Browse files
committed
3.4.1
1 parent 5a2d4be commit 344ef28

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
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.4.1] - 2025-08-21
4+
5+
- Fixed Python exercises including venv directories when packaging.
6+
37
## [3.4.0] - 2025-07-17
48

59
- Improved error handling during initialization.

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.38.0";
6+
const TMC_LANGS_RUST_VERSION = "0.38.1";
77

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

package-lock.json

Lines changed: 2 additions & 2 deletions
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
@@ -1,7 +1,7 @@
11
{
22
"name": "test-my-code",
33
"displayName": "TestMyCode",
4-
"version": "3.4.0",
4+
"version": "3.4.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.0
2-
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.38.0/crates/tmc-langs-cli/bindings.d.ts
1+
// VERSION=0.38.1
2+
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.38.1/crates/tmc-langs-cli/bindings.d.ts
33

44
export type Locale = string;
55

webview-ui/src/panels/Welcome.svelte

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

7474
<div class="content_section">
75+
<h3>3.4.1 - 2025-08-21</h3>
76+
<h4>Fixed Python exercises including venv directories when packaging</h4>
77+
<p>
78+
Previously, if an exercise contained a venv directory it would get included during
79+
submissions and cause issues at the server. Now these directories are ignored during
80+
packaging.
81+
</p>
7582
<h3>3.4.0 - 2025-07-17</h3>
7683
<h4>Improved error handling during initialization</h4>
7784
<p>

0 commit comments

Comments
 (0)