Skip to content
Merged

3.4.2 #759

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.2] - 2025-08-21

- Fixed unnecessary dynamic library dependency causing errors when the library was missing on the user's computer.

## [3.4.1] - 2025-08-21

- Fixed Python exercises including venv directories when packaging.
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.1",
"version": "3.4.2",
"description": "TestMyCode extension for Visual Studio Code",
"categories": [
"Education",
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.4.2 - 2025-08-25</h3>
<h4>Removed an unnecessary dependency which could cause errors</h4>
<p>
The previous version contained a dependency on an unnecessary library which caused
an error when the library was missing on the user's computer.
</p>
<h3>3.4.1 - 2025-08-21</h3>
<h4>Fixed Python exercises including venv directories when packaging</h4>
<p>
Expand Down
Loading