cosmwasm
cosmwasm copied to clipboard
Update CHANGELOG
There is no info after 0.16.3-0.5.1. This should be updated.
~git-chglog looks having a bug and it returns an error when a version including '+' in it is given.~
~git-chglog looks having a bug and it generates a wrong CHANGELOG for git-chglog v1.1.9+0.8.0..v1.1.9-0.7.0
.
If we tag v1.1.9-0.8.0
for v1.1.9+0.8.0
and execute git-chglog v1.1.9-0.8.0..v1.1.9-0.7.0
, it also generates a wrong CHANGELOG.~
~We need to make/use another tool for generating CHANGELOG for our versionings.~
I missed we set a version filter in .chglog/config. We should just fix it.
We will make it strict for our repository's rule.
-
In main branch, we will use following version rule to release the tag in the feature.
^v\d+\.\d+\.\d[+-]\d+\.\d+\.\d+$
For example,v1.0.0-0.7.0
,v1.0.0+0.8.0
-
In fork branch, like
dynamiclink
branch, we will use following version rule to release the tag in the feature.^v\d+\.\d+\.\d[+-]\d+\.\d+\.\d+-dynamiclink.+$
For example,v1.0.0-0.7.0-dynamiclink1
,v1.0.0+0.8.0-dynamiclink2