Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 1.15 KB

Releasing.md

File metadata and controls

26 lines (24 loc) · 1.15 KB

Releasing SourceKitten

For SourceKitten contributors, follow these steps to cut a release:

  1. Update version number: make set_version 0.6.2
  2. Come up with a witty feline themed release name. Past names include:
    • Objective-Cat
    • Cat-astrophic
    • SourceClangKitLibKitten
    • Grumpy Cat
  3. Update the first header in CHANGELOG.md to the new version number & release name.
  4. Commit & push to the master branch.
  5. Tag: git tag -a 0.6.2 -m "0.6.2: Objective-Cat"; git push origin 0.6.2
  6. Make sure you have the latest stable Xcode version installed and xcode-selected.
  7. Create the pkg installer & framework zip: make release
  8. Create a GitHub release: https://github.com/realm/SourceKitten/releases/new
    • Specify the tag you just pushed from the dropdown.
    • Set the release title to the new version number & release name.
    • Add the changelog section to the release description text box.
    • Upload the pkg installer and Carthage zip (SourceKittenFramework.framework.zip) you just built to the GitHub release binaries.
    • Click "Publish release".
  9. Publish to Homebrew and CocoaPods trunk: make publish