Currently the module path in go.mod file is same for v0 and v1 releases. This makes it impossible to use latest the fsm package if there are any indirect dependencies on v0 versions of fsm package. And it would be according to a standard way, if the module path of the v1 releases are as follows,
Currently the module path in go.mod file is same for v0 and v1 releases. This makes it impossible to use latest the fsm package if there are any indirect dependencies on v0 versions of fsm package. And it would be according to a standard way, if the module path of the v1 releases are as follows,
module github.com/looplab/fsm/v1
What is your opinion on this ?