diff --git a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md
index b725b8b7..60dd236a 100644
--- a/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md
+++ b/articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md
@@ -321,7 +321,7 @@ To add the Gum NuGet package in Visual Studio Code:
2. Choose `Add NuGet Package` from the context menu.
3. Enter `Gum.MonoGame` in the `Add NuGet Package` search prompt and press Enter.
4. When the search finishes, select the `Gum.MonoGame` package in the results
-5. When prompted for a version choose version `2025.12.9.1`.
+5. When prompted for a version choose version `2026.5.8.1`.
#### [Visual Studio 2022](#tab/vs2022)
@@ -332,7 +332,7 @@ To Add the Gum NuGet package in Visual Studio 2022:
3. In the NuGet Package Manager window, select the `Browse` tab if it is not already selected.
4. In the search box, enter `Gum.MonoGame`.
5. Select the "Gum.MonoGame" package from the search results.
-6. On the right, in the version dropdown, select version `2025.12.9.1` and click the "Install" button.
+6. On the right, in the version dropdown, select version `2026.5.8.1` and click the "Install" button.
#### [dotnet CLI](#tab/dotnetcli)
@@ -342,7 +342,7 @@ To add the Gum NuGet package using the dotnet CLI:
2. Enter the following command:
```sh
- dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2025.12.9.1
+ dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2026.5.8.1
```
---
@@ -351,11 +351,11 @@ To add the Gum NuGet package using the dotnet CLI:
> You can verify the package was successfully added by examining your `DungeonSlime.csproj` file, which should now contain a reference like:
>
> ```xml
->
+>
> ```
> [!IMPORTANT]
-> This tutorial uses version `2025.12.9.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial.
+> This tutorial uses version `2026.5.8.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial.
### Adding UI Sound Effect