cosmwasm icon indicating copy to clipboard operation
cosmwasm copied to clipboard

Update CHANGELOG

Open loloicci opened this issue 1 year ago • 4 comments

There is no info after 0.16.3-0.5.1. This should be updated.

loloicci avatar Feb 13 '24 11:02 loloicci

~git-chglog looks having a bug and it returns an error when a version including '+' in it is given.~

loloicci avatar Feb 19 '24 02:02 loloicci

~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.~

loloicci avatar Mar 04 '24 09:03 loloicci

I missed we set a version filter in .chglog/config. We should just fix it.

loloicci avatar Mar 05 '24 05:03 loloicci

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

170210 avatar Mar 05 '24 07:03 170210