looplab / fsm

Finite State Machine for Go
Apache License 2.0
2.86k stars 312 forks source link

Separate module path for the v1 releases #97

Closed sanojsubran closed 1 year ago

sanojsubran commented 1 year ago

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 ?