> Can I provide any extra debug info? You could. You could do a bisection to find out which exact commit introduced regression. There is ~50 commits between 0.8.2 and 0.8.3, so you would need to compile and test st ~6 times to find out exact commit.
You can use `git bisect` or eyeball more or less middle of `git log --oneline`, then `git checkout COMMIT`, compile and test. If COMMIT works it means bug is in later commit, and if it doesn't work it means that bug is in this or some previous commit. Repeat couple times and voila. This could be very helpful. Br, Jakub Leszczak