@storm-software/git-tools 2.124.26 → 2.124.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/git.js CHANGED
@@ -3227,9 +3227,14 @@ function getReleaseGroupConfig(releaseConfig, workspaceConfig) {
3227
3227
  Object.entries(releaseConfig.groups).map(([name, group]) => {
3228
3228
  const config5 = defu(
3229
3229
  {
3230
- ...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog"]),
3230
+ ...omit(DEFAULT_RELEASE_GROUP_CONFIG, ["changelog", "version"]),
3231
3231
  ...group
3232
3232
  },
3233
+ {
3234
+ version: {
3235
+ ...DEFAULT_RELEASE_GROUP_CONFIG.version
3236
+ }
3237
+ },
3233
3238
  {
3234
3239
  changelog: {
3235
3240
  ...DEFAULT_RELEASE_GROUP_CONFIG.changelog,