Skip to content

Release v3.0.0

Choose a tag to compare

@github-actions github-actions released this 04 Aug 15:27
· 43 commits to main since this release

🌟 Branch-Based Release Strategy with Conditional Major Increment

πŸ“Š Release Information

  • πŸ”€ Branch: main
  • 🏷️ Version: v3.0.0
  • πŸ“¦ Previous Version: v2.0.0
  • πŸš€ Release Type: main
  • πŸ€– Trigger: push
  • πŸ“ Commit: d6cb5d3bd3422231d296a7737471e99afdcdcd1e

🎯 Release Strategy Applied

Main Branch: Conditional major increment (only if minor=0 AND patch=0, otherwise increment patch with overflow logic)

Main Branch Logic (NEW RULE)

  • If minor=0 AND patch=0: Increment major β†’ major+1.0.0
  • If minorβ‰ 0 OR patchβ‰ 0: Keep major, increment patch β†’ major.minor.(patch+1)
  • Overflow handling: If patch > 99 β†’ minor+1, patch=0; if minor > 99 β†’ major+1, minor=0

Feature/Fix Branch Overflow Logic

  • Feature branches: If patch + commits > 99 β†’ patch = 0, minor += 1
  • Fix branches: If minor + commits > 99 β†’ minor = 0, major += 1
  • Cascading overflow: If minor overflows during patch overflow β†’ minor = 0, major += 1

πŸ“¦ Artifacts

  • πŸ“„ Bicep templates compiled to ARM templates
  • πŸ—οΈ Infrastructure deployment files
  • πŸ“‹ Release metadata and documentation

πŸ”— Links

Full Changelog: v2.0.0...v3.0.0