Releases are currently tagged releases contain a "+" sign (e.g. "v1.4.0+cli"). This doesn't play well when specifying a tag to install in a projects package.json if using npm or similar to manage contract dependencies.
For example:
"dependencies": {
"wormhole-ntt": "github:wormhole-foundation/native-token-transfers#v1.4.0+cli"
},
cannot be parsed successfully and requires specifying an exact git commit.
Suggest switching to a . separated suffix instead