Skip to content

v1.0.2

Choose a tag to compare

@victorbruce victorbruce released this 23 Dec 15:37
· 11 commits to main since this release

πŸ”§ Chores

  • add standard-version for automated releases

What's New

This patch release adds infrastructure for automated semantic versioning and simplified Git workflow.

New Features

  • Automated version bumping based on conventional commits
  • Automatic CHANGELOG.md generation
  • Simplified Git Flow: Feature β†’ Main (removed dev branch)

New Scripts

npm run release          # Automatic version bump
npm run release:minor    # New features (1.0.0 β†’ 1.1.0)
npm run release:major    # Breaking changes (1.0.0 β†’ 2.0.0)
npm run release:patch    # Bug fixes (1.0.0 β†’ 1.0.1)

Developer Experience

  • Faster feature delivery (1 PR instead of 2)
  • Automated releases reduce manual errors
  • Clear changelog maintained automatically
  • Professional versioning workflow

Full Changelog: v1.0.0...v1.0.2