Skip to content

Release v2.0.0

Choose a tag to compare

@github-actions github-actions released this 30 Jul 18:46
· 44 commits to main since this release
5733b47

🌟 Branch-Based Release Strategy with Conditional Major Increment

πŸ“Š Release Information

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

🎯 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

What's Changed

Full Changelog: v1.0.0...v2.0.0