diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cd08e2..96d362b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.2.4] - 2024-10-26 + +### Fixed + +- Fix Windows job handle names being the same (#358) + ## [2.2.3] - 2024-10-20 ### Added diff --git a/src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs b/src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs index 124f84d..c5cc069 100644 --- a/src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs +++ b/src/Packages/UnityWebBrowser/Runtime/AssemblyInfo.cs @@ -34,8 +34,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.2.3")] -[assembly: AssemblyFileVersion("2.2.3")] +[assembly: AssemblyVersion("2.2.4")] +[assembly: AssemblyFileVersion("2.2.4")] [assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Prj")] [assembly: InternalsVisibleTo("VoltstroStudios.UnityWebBrowser.Editor")] diff --git a/src/Packages/UnityWebBrowser/package.json b/src/Packages/UnityWebBrowser/package.json index 1e05dec..92ef070 100644 --- a/src/Packages/UnityWebBrowser/package.json +++ b/src/Packages/UnityWebBrowser/package.json @@ -2,7 +2,7 @@ "name": "dev.voltstro.unitywebbrowser", "displayName": "Unity Web Browser", "description": "Unity Web Browser (UWB) is a Unity package that allows displaying and interacting with the web from within Unity.", - "version": "2.2.3", + "version": "2.2.4", "unity": "2021.3", "author": { "name": "Voltstro", diff --git a/src/version.json b/src/version.json index 53d77e1..5f98c82 100644 --- a/src/version.json +++ b/src/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "2.2.3", + "version": "2.2.4", "publicReleaseRefSpec": [ "^refs/heads/release$" ],