Thanks for reporting! We'll fix it soon.
If you want to fix it immediately, you can open SkeletonRenderer.cs
and look for the void OnDestroy
method.
The fixed version should look like this:
void OnDestroy () {
rendererBuffers.Dispose();
valid = false; // add this line
}
We'll apply this change to git and the unitypackage soon.