Changelog_1_4_4.cs
using System;
using System.Collections.Generic;
namespace Unity.VisualScripting
{
[Plugin(BoltFlow.ID)]
internal class Changelog_1_4_4 : PluginChangelog
{
public Changelog_1_4_4(Plugin plugin) : base(plugin) { }
public override SemanticVersion version => "1.4.4";
public override DateTime date => new DateTime(2019, 06, 11);
public override IEnumerable<string> changes
{
get
{
yield return "[Fixed] Unity crash due to Mono runtime vtable issue with type unification";
}
}
}
}