Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [3.4.1] - 2025-08-21

- Fixed Python exercises including venv directories when packaging.

## [3.4.0] - 2025-07-17

- Improved error handling during initialization.
Expand Down
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

const path = require("path");

const TMC_LANGS_RUST_VERSION = "0.38.0";
const TMC_LANGS_RUST_VERSION = "0.38.1";

const mockTmcLocalMooc = {
__TMC_BACKEND_URL__: JSON.stringify("http://localhost:4001"),
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "test-my-code",
"displayName": "TestMyCode",
"version": "3.4.0",
"version": "3.4.1",
"description": "TestMyCode extension for Visual Studio Code",
"categories": [
"Education",
Expand Down
4 changes: 2 additions & 2 deletions shared/langsSchema.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// VERSION=0.38.0
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.38.0/crates/tmc-langs-cli/bindings.d.ts
// VERSION=0.38.1
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.38.1/crates/tmc-langs-cli/bindings.d.ts

export type Locale = string;

Expand Down
7 changes: 7 additions & 0 deletions webview-ui/src/panels/Welcome.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@
<!-- This list should generally contain only the last couple versions/months worth of updates -->

<div class="content_section">
<h3>3.4.1 - 2025-08-21</h3>
<h4>Fixed Python exercises including venv directories when packaging</h4>
<p>
Previously, if an exercise contained a venv directory it would get included during
submissions and cause issues at the server. Now these directories are ignored during
packaging.
</p>
<h3>3.4.0 - 2025-07-17</h3>
<h4>Improved error handling during initialization</h4>
<p>
Expand Down
Loading