With the syntax in my composer.json from "vendor/xyz-bundle": "~2.1.0@dev"
I am trying to get the latest commit in the 2.0 branch, but it always checks the 2.1.0 tag, and does not go to the last commit in the 2.0 branch.
Here is what it looks like:

I tried all kinds of things with branching-smoothing in the xyz package, but never get the latest commit 2.0.
Is this due to the fact that there is no separate branch 2.1 and only branch 2.0? How can I check the last commit in branch 2.0?
source
share