Bug Report: Debian changelog version error
Description of Bug
The RPM spec file gets a version of 0.8.1 after release so that 0.9 will install and not be a "downgrade". The Debian changelog gets a version of 0.81.1 which I suspect is unintended. This breaks apt if you ever get a Debian repository going, and it generally causes problems that can only be fixed with use of the Debian version epoch. Can we fix it before someone ends up with an old version that won't get upgraded until 1.0 releases?
Attached Log
aki:~/Source/openrgb/OpenRGB $ cat debian/changelog
openrgb (0.81.1) UNRELEASED; urgency=medium
* Builds from git master. See git history for more information.
-- Adam Honse <adam@Adam-Laptop.lan> Sun, 12 Apr 2020 22:57:34 -0500
aki:~/Source/openrgb/OpenRGB $ dpkg --compare-versions '0.71.1' lt '0.8'; echo $?
1
aki:~/Source/openrgb/OpenRGB $ dpkg --compare-versions '0.7' lt '0.8'; echo $?
0
aki:~/Source/openrgb/OpenRGB $ dpkg --compare-versions '0.7.1' lt '0.8'; echo $?
0
aki:~/Source/openrgb/OpenRGB $ dpkg --compare-versions '0.71.1' lt '0.8'; echo $?
1
aki:~/Source/openrgb/OpenRGB $ dpkg --compare-versions '0.81.1' lt '0.9'; echo $?
1
Operating System
Debian Linux (sid)