Skip to content

Latest commit

 

History

History
44 lines (40 loc) · 1.74 KB

MAINTAINER.md

File metadata and controls

44 lines (40 loc) · 1.74 KB

These are notes for processes that still need automation.

Release

  • Go on the sources package and draft a new release: https://github.com/yokai-php/batch-src/releases/new
  • Create a new tag according to the changes you want to release: 0.x.y
  • Copy the tag name as the release title: 0.x.y
  • Use the Generate release notes button
  • Switch to your local repository
  • Fetch latest changes made to the sources repository:
git checkout 0.x
git fetch
git pull
  • Synchronise source repository development branch with packages:
./scripts/split-branch 0.x
  • Synchronise source repository created tag with packages:
./scripts/split-tag {created tag}
  • Prepare the packages release note:
## What's Changed

see https://github.com/yokai-php/batch-src/releases/tag/{created tag}

**Full Changelog**: https://github.com/yokai-php/{package name}/compare/{prev tag}...{created tag}