Skip to content
Open

3.5.1 #770

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.5.1] - 2025-10-23

- Improved error reporting in some cases.

## [3.5.0] - 2025-10-09

- Improved exercise submission packaging to avoid overly large archives
Expand Down
2 changes: 2 additions & 0 deletions bin/updateLangs.bash
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ echo "$GENERATED" | npx prettier --parser typescript >> "$BINDINGS_DOWNLOAD_TARG

# update version number
sed -i s/"TMC_LANGS_RUST_VERSION = .*"/"TMC_LANGS_RUST_VERSION = \"${VERSION}\";/" ./config.js

echo "Complete!"
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.39.1";
const TMC_LANGS_RUST_VERSION = "0.39.3";

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.5.0",
"version": "3.5.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.3
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.38.3/crates/tmc-langs-cli/bindings.d.ts
// VERSION=0.39.3
// https://raw.githubusercontent.com/rage/tmc-langs-rust/0.39.3/crates/tmc-langs-cli/bindings.d.ts

export type Locale = string;

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

<div class="content_section">
<h3>3.5.1 - 2025-10-23</h3>
<h4>Improved error reporting in some cases</h4>
<p>
Previously, certain error conditions resulted in error messages with some useful
information left out. This information should now be included in all error messages.
</p>
<h3>3.5.0 - 2025-10-09</h3>
<h4>Improved exercise submission packaging to avoid overly large archives</h4>
<p>
Expand Down
Loading