diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a5e4e47..12cd080a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,14 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added +### Changed + +### Removed + +## [2.3.1] 2023-07-07 + +### Added + - Added the ability to add, modify, and delete source file patterns for Yarn projects in the Inspector. ### Changed - Calling `Stop` on the Dialogue Runner will now also dismiss the LineView, OptionListView, and VoiceOverView. -### Removed - ## [2.3.0-beta2] 2023-05-17 ### Added diff --git a/Editor/AssemblyInfo.cs b/Editor/AssemblyInfo.cs index ef390f03..6cbd4101 100644 --- a/Editor/AssemblyInfo.cs +++ b/Editor/AssemblyInfo.cs @@ -1,8 +1,8 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyVersion("2.3.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] -[assembly: AssemblyInformationalVersion("2.3.0-beta2")] +[assembly: AssemblyVersion("2.3.1.0")] +[assembly: AssemblyFileVersion("2.3.1.0")] +[assembly: AssemblyInformationalVersion("2.3.1")] [assembly: InternalsVisibleTo("YarnSpinner.Editor.Tests")] diff --git a/Runtime/AssemblyInfo.cs b/Runtime/AssemblyInfo.cs index 6d321ed7..f1868c38 100644 --- a/Runtime/AssemblyInfo.cs +++ b/Runtime/AssemblyInfo.cs @@ -1,9 +1,9 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyVersion("2.3.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] -[assembly: AssemblyInformationalVersion("2.3.0-beta2")] +[assembly: AssemblyVersion("2.3.1.0")] +[assembly: AssemblyFileVersion("2.3.1.0")] +[assembly: AssemblyInformationalVersion("2.3.1")] [assembly: InternalsVisibleTo("YarnSpinnerTests")] [assembly: InternalsVisibleTo("YarnSpinner.Editor.Tests")] [assembly: InternalsVisibleTo("YarnSpinner.Unity.Editor")] diff --git a/Samples~/AssemblyInfo.cs b/Samples~/AssemblyInfo.cs index 168df7a7..8508218e 100644 --- a/Samples~/AssemblyInfo.cs +++ b/Samples~/AssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Reflection; -[assembly: AssemblyVersion("2.3.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] -[assembly: AssemblyInformationalVersion("2.3.0-beta2")] +[assembly: AssemblyVersion("2.3.1.0")] +[assembly: AssemblyFileVersion("2.3.1.0")] +[assembly: AssemblyInformationalVersion("2.3.1")] diff --git a/package.json b/package.json index c2c8ab3e..72eff542 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dev.yarnspinner.unity", - "version": "2.3.0-preview.2", + "version": "2.3.1", "displayName": "Yarn Spinner", "description": "Yarn Spinner is the friendly tool for interactive conversations. Write your dialogue in a simple programming language that's designed to be straightforward for writers and powerful for programmers, and then attach it to your scenes to power your conversations.", "unity": "2019.4",